Auch der Compiler meckert das an:
Code: Alles auswählen
update.cpp: In constructor `CFlashUpdate::CFlashUpdate()':
update.cpp:82: warning: char format, different type arg (arg 3)
update.cpp:87: warning: char format, different type arg (arg 3)
update.cpp:95: warning: char format, different type arg (arg 3)
82:
Code: Alles auswählen
sscanf(buf, "basepath: %s\n", &buf2);[/ode]
87:[code]sscanf(buf, "imagefile: %s\n", &buf2);
Code: Alles auswählen
sscanf(buf, "versionfile: %s\n", &buf2);
82:
Code: Alles auswählen
sscanf(buf, "basepath: %s\n", buf2);[/ode]
87:[code]sscanf(buf, "imagefile: %s\n", buf2);
Code: Alles auswählen
sscanf(buf, "versionfile: %s\n", buf2);