Skip to content

Commit d0a75e4

Browse files
committed
fix typo
1 parent 3ff56cb commit d0a75e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/tusb_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
// Macros Helper
3636
//--------------------------------------------------------------------+
3737
#define TU_ARRAY_SIZE(_arr) ( sizeof(_arr) / sizeof(_arr[0]) )
38-
#define TU_FIELD_SZIE(_type, _field) (sizeof(((_type *)0)->_field))
38+
#define TU_FIELD_SIZE(_type, _field) (sizeof(((_type *)0)->_field))
3939
#define TU_MIN(_x, _y) ( ( (_x) < (_y) ) ? (_x) : (_y) )
4040
#define TU_MAX(_x, _y) ( ( (_x) > (_y) ) ? (_x) : (_y) )
4141
#define TU_DIV_CEIL(n, d) (((n) + (d) - 1) / (d))

0 commit comments

Comments
 (0)