diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-28 04:36:32 +1100 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2021-01-12 22:46:11 -0800 |
commit | 4dd03061b4326470910b65d7ac7a86de1f979b07 (patch) | |
tree | a8e08849f7cde6ed0bc9a4a2bdf5a9542c05c6e3 /tmk_core/common/avr | |
parent | 60fd4d61efcce3cda09ef2273f77bce49c1db456 (diff) |
Ensure single newline at EOF for core files (#11310)
Diffstat (limited to 'tmk_core/common/avr')
-rw-r--r-- | tmk_core/common/avr/xprintf.S | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tmk_core/common/avr/xprintf.S b/tmk_core/common/avr/xprintf.S index 06434b98d9..c5a414c35c 100644 --- a/tmk_core/common/avr/xprintf.S +++ b/tmk_core/common/avr/xprintf.S @@ -450,7 +450,7 @@ xatoi: brcs 70f ;/ cpi r22, 10 ;if(r22 >= 10) { brcs 53f ; r22 -= 7; - subi r22, 7 ; if(r22 < 10) + subi r22, 7 ; if(r22 < 10) cpi r22, 10 ; brcs 70f ;} 53: cp r22, r25 ;if(r22 >= r25) error; @@ -496,5 +496,3 @@ xatoi: ret .endfunc #endif - - |