diff options
| author | hathach <[email protected]> | 2018-03-08 14:36:37 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-08 14:36:37 +0700 |
| commit | 849d600d88d965b3db39cf112ea24972a673950e (patch) | |
| tree | d6b77cd40fda00ce037aed8916fec53f52ad8739 | |
| parent | c8e9fb52d40d17a9d3ca859e863f28c055fae3d7 (diff) | |
clean up
| -rw-r--r-- | tinyusb/osal/osal_none.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tinyusb/osal/osal_none.h b/tinyusb/osal/osal_none.h index eebc34489..b93244e16 100644 --- a/tinyusb/osal/osal_none.h +++ b/tinyusb/osal/osal_none.h @@ -127,8 +127,7 @@ static inline osal_task_t osal_task_create(osal_func_t code, const char* name, u }while(0)
//------------- Sub Task Assert -------------//
-#define SUBTASK_RETURN(error) \
- do { TASK_RESTART; return error; } while(0)
+#define SUBTASK_RETURN(error) do { TASK_RESTART; return error; } while(0)
|
