| Server IP : 82.208.35.60 / Your IP : 216.73.217.39 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/sysutils/aimage/files/ |
Upload File : |
--- 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)
/* 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,
@@ -621,7 +621,7 @@ int64 scaled_atoi(const char *arg)
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: