summaryrefslogtreecommitdiffstats
path: root/sys/ia64
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2003-05-03 23:05:16 +0000
committermarcel <marcel@FreeBSD.org>2003-05-03 23:05:16 +0000
commit750391fd90b065660298d10898ecef374d7ffc5b (patch)
treefdb7bce62f627a2643af84d6291f89afffa818eb /sys/ia64
parentbb61946677e9bf06dc9045df629458f7cc01638a (diff)
downloadFreeBSD-src-750391fd90b065660298d10898ecef374d7ffc5b.zip
FreeBSD-src-750391fd90b065660298d10898ecef374d7ffc5b.tar.gz
Fix c99 victim: the accepted character '0 most now be types as '0'.
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/ia64/locore.S6
-rw-r--r--sys/ia64/ia64/locore.s6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/ia64/ia64/locore.S b/sys/ia64/ia64/locore.S
index 11e5c70..61671b6 100644
--- a/sys/ia64/ia64/locore.S
+++ b/sys/ia64/ia64/locore.S
@@ -358,9 +358,9 @@ EXPORT(intrnames)
intr_n = 0
.rept INTRCNT_COUNT - 1
.ascii "#"
- .byte intr_n / 100 + '0
- .byte (intr_n % 100) / 10 + '0
- .byte intr_n % 10 + '0
+ .byte intr_n / 100 + '0'
+ .byte (intr_n % 100) / 10 + '0'
+ .byte intr_n % 10 + '0'
.fill INTRNAME_LEN - 1 - 3 - 1, 1, ' '
.byte 0
intr_n = intr_n + 1
diff --git a/sys/ia64/ia64/locore.s b/sys/ia64/ia64/locore.s
index 11e5c70..61671b6 100644
--- a/sys/ia64/ia64/locore.s
+++ b/sys/ia64/ia64/locore.s
@@ -358,9 +358,9 @@ EXPORT(intrnames)
intr_n = 0
.rept INTRCNT_COUNT - 1
.ascii "#"
- .byte intr_n / 100 + '0
- .byte (intr_n % 100) / 10 + '0
- .byte intr_n % 10 + '0
+ .byte intr_n / 100 + '0'
+ .byte (intr_n % 100) / 10 + '0'
+ .byte intr_n % 10 + '0'
.fill INTRNAME_LEN - 1 - 3 - 1, 1, ' '
.byte 0
intr_n = intr_n + 1
OpenPOWER on IntegriCloud