diff options
| author | Nathan Conrad <[email protected]> | 2019-09-27 00:37:21 -0400 |
|---|---|---|
| committer | Nathan Conrad <[email protected]> | 2019-09-27 00:37:21 -0400 |
| commit | 91fa24d99c333d89f29ad4b2cef16f26c5c80a3b (patch) | |
| tree | 4d74f44887090e049db46e19d437adcaf22213d3 /src/common/tusb_common.h | |
| parent | 705b8be956e64ac06f223b2fc3e08bd706602a18 (diff) | |
| parent | 9a8d23e95ed6a48b3a3d43f7cf7d3f360ee61977 (diff) | |
Merge branch 'master' into ZLP_Request2
Diffstat (limited to 'src/common/tusb_common.h')
| -rw-r--r-- | src/common/tusb_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tusb_common.h b/src/common/tusb_common.h index 4f0105d13..57c6e2fcf 100644 --- a/src/common/tusb_common.h +++ b/src/common/tusb_common.h @@ -38,7 +38,7 @@ //--------------------------------------------------------------------+
// Macros Helper
//--------------------------------------------------------------------+
-#define TU_ARRAY_SZIE(_arr) ( sizeof(_arr) / sizeof(_arr[0]) )
+#define TU_ARRAY_SIZE(_arr) ( sizeof(_arr) / sizeof(_arr[0]) )
#define TU_MIN(_x, _y) ( (_x) < (_y) ) ? (_x) : (_y) )
#define TU_MAX(_x, _y) ( (_x) > (_y) ) ? (_x) : (_y) )
|
