Fix c99 victim: the accepted character '0 most now be types as '0'.

This commit is contained in:
Marcel Moolenaar 2003-05-03 23:05:16 +00:00
parent 5cba12d3bc
commit e126260569
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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