diff options
Diffstat (limited to '064write-byte.subx')
-rw-r--r-- | 064write-byte.subx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/064write-byte.subx b/064write-byte.subx index 4bb1bcbb..80031972 100644 --- a/064write-byte.subx +++ b/064write-byte.subx @@ -169,7 +169,7 @@ test-write-byte-buffered-multiple-flushes: # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 4/imm32 # add to esp # fill up the buffer for _test-buffered-file - # . write(_test-buffered-file+4, 'abcdef') + # . write(_test-buffered-file+4, "abcdef") # . . push args 68/push "abcdef"/imm32 b8/copy-to-eax _test-buffered-file/imm32 @@ -194,9 +194,9 @@ test-write-byte-buffered-multiple-flushes: e8/call flush/disp32 # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 4/imm32 # add to esp - # check-stream-equal(_test-stream, "abcdef", msg) + # check-stream-equal(_test-stream, "abcdefg", msg) # . . push args - 68/push "F - test-write-byte-buffered-multiple-flushes: 1"/imm32 + 68/push "F - test-write-byte-buffered-multiple-flushes"/imm32 68/push "abcdefg"/imm32 68/push _test-stream/imm32 # . . call |