mirror of
https://github.com/cc65/cc65.git
synced 2025-04-06 04:41:08 +00:00
Fixed a bug in the return value of the sprintf and vsprintf functions
git-svn-id: svn://svn.cc65.org/cc65/trunk@1067 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
b3f2a6b35c
commit
40a9055be8
@ -152,14 +152,10 @@ _vsprintf:
|
||||
tya
|
||||
sta (ptr1),y
|
||||
|
||||
; Return the number of bytes written. The carry is clear here because of the
|
||||
; last addition which will never overflow for sane code.
|
||||
; Return the number of bytes written.
|
||||
|
||||
lda outdesc ; ccount
|
||||
ldx outdesc+1
|
||||
adc #1 ; Account for terminator
|
||||
bcc @L9
|
||||
inx
|
||||
@L9: rts
|
||||
rts
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user