summaryrefslogtreecommitdiff
path: root/tmk_core/common/avr/xprintf.S
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-28 04:36:32 +1100
committerGitHub <noreply@github.com>2020-12-28 04:36:32 +1100
commit1b7b72c0e96856d2b9f73f705787af3426662bcf (patch)
treeb03387eee60a4650d850c11daf7a962285837da6 /tmk_core/common/avr/xprintf.S
parentbbf0f65284f6c9cc40429f446bddf48e2e882ad0 (diff)
Ensure single newline at EOF for core files (#11310)
Diffstat (limited to 'tmk_core/common/avr/xprintf.S')
-rw-r--r--tmk_core/common/avr/xprintf.S4
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
-
-