Files

21 lines
725 B
C++
Raw Permalink Normal View History

2018-06-06 12:29:15 +00:00
--- src/aimage.cpp.orig 2010-12-17 13:49:50 UTC
+++ src/aimage.cpp
@@ -344,7 +344,7 @@ void segwrite_callback(struct affcallback_info *acbi)
2018-03-09 17:57:27 +00:00
/* log if necessary */
if(logfile){
fprintf(logfile,
- " pagenum=%"I64d" bytes_to_write=%d bytes_written=%d lap_time=%f\n",
+ " pagenum=%" I64d" bytes_to_write=%d bytes_written=%d lap_time=%f\n",
acbi->pagenum,
acbi->bytes_to_write,
acbi->bytes_written,
2018-06-06 12:29:15 +00:00
@@ -621,7 +621,7 @@ int64 scaled_atoi(const char *arg)
2018-03-09 17:57:27 +00:00
int64 ret=0;
int multiplier=1;
char ch,junk;
- switch(sscanf(arg,"%"I64d"%c%c",&ret,&ch,&junk)){
+ switch(sscanf(arg,"%" I64d"%c%c",&ret,&ch,&junk)){
case 1:
return ret; // no multiplier
case 2: