]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix compile warnings in egodox robot_test_layout
authorNikolaus Wittenstein <nikolaus.wittenstein@gmail.com>
Sat, 4 Feb 2017 02:06:43 +0000 (21:06 -0500)
committerNikolaus Wittenstein <nikolaus.wittenstein@gmail.com>
Sat, 4 Feb 2017 02:07:24 +0000 (21:07 -0500)
Fixes the warning "right shift count >= width of type" by adding UL to
the end of constants.

keyboards/ergodox/keymaps/robot_test_layout/keymap.c

index 480be177f09f7f4bac3140f1372a629c543baa81..e9e2597d7e0868dbb9736f89fe9c2890a6839d06 100644 (file)
@@ -68,7 +68,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
     case RGB_FF0000:
       if (record->event.pressed) {
         #ifdef RGBLIGHT_ENABLE
-          EZ_RGB(0xff0000);
+          EZ_RGB(0xff0000UL);
           register_code(KC_1); unregister_code(KC_1);
         #endif
       }
@@ -77,7 +77,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
     case RGB_00FF00:
       if (record->event.pressed) {
         #ifdef RGBLIGHT_ENABLE
-          EZ_RGB(0x00ff00);
+          EZ_RGB(0x00ff00UL);
           register_code(KC_2); unregister_code(KC_2);
         #endif
       }
@@ -86,7 +86,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
     case RGB_0000FF:
       if (record->event.pressed) {
         #ifdef RGBLIGHT_ENABLE
-          EZ_RGB(0x0000ff);
+          EZ_RGB(0x0000ffUL);
           register_code(KC_3); unregister_code(KC_3);
         #endif
       }
@@ -95,7 +95,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
     case RGB_FFFFFF:
       if (record->event.pressed) {
         #ifdef RGBLIGHT_ENABLE
-          EZ_RGB(0xffffff);
+          EZ_RGB(0xffffffUL);
           register_code(KC_4); unregister_code(KC_4);
         #endif
       }