diff options
Diffstat (limited to 'tmk_core/common/util.h')
-rw-r--r-- | tmk_core/common/util.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tmk_core/common/util.h b/tmk_core/common/util.h index 7451cc084d..5706b047d0 100644 --- a/tmk_core/common/util.h +++ b/tmk_core/common/util.h @@ -22,12 +22,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. // convert to L string #define LSTR(s) XLSTR(s) -#define XLSTR(s) L ## #s +#define XLSTR(s) L## #s // convert to string #define STR(s) XSTR(s) #define XSTR(s) #s - uint8_t bitpop(uint8_t bits); uint8_t bitpop16(uint16_t bits); uint8_t bitpop32(uint32_t bits); |