diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-18 07:34:59 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-18 16:46:50 -0600 |
commit | 0c70b9a94982f4b75d3b450920e82e2390a153c1 (patch) | |
tree | 93a6fbbdf1dbc965f73f2eca18fa49f6f252b63a /cmd/sbc_harness/config/tusb_config.h | |
parent | 957db32f46ca468043e1699817273a3e228c1ffb (diff) |
Tidy `do { ... } while (0)` macros
Diffstat (limited to 'cmd/sbc_harness/config/tusb_config.h')
-rw-r--r-- | cmd/sbc_harness/config/tusb_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/sbc_harness/config/tusb_config.h b/cmd/sbc_harness/config/tusb_config.h index 0a6d3e4..5240311 100644 --- a/cmd/sbc_harness/config/tusb_config.h +++ b/cmd/sbc_harness/config/tusb_config.h @@ -1,6 +1,6 @@ /* tusb_config.h - Compile-time configuration for the TinyUSB library * - * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> + * Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com> * SPDX-License-Identifier: AGPL-3.0-or-later * * SPDX-License-Identifier: MIT @@ -61,7 +61,7 @@ extern "C" { TU_BREAKPOINT(); \ return _ret; \ } \ - } while(0) + } while (0) void _libmisc_tu_mess_failed(const char *expr, const char *file, unsigned int line, const char *func); |