3 Nov
2015
3 Nov
'15
3:21 a.m.
On 11/02/15 22:26, Martin Storsjo wrote:
+ format = "%Ix %d"; + r = sprintf(buffer,format,0x123456,1); + ok(!strcmp(buffer,"123456 1"),"Pointer formatted incorrectly\n"); + ok( r==8, "return count wrong\n"); Please change the test failure message (I would prefer something like ok(!strcmp(...), "buffer = %s\n", buffer)).
Thanks, Piotr