You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
474 B
13 lines
474 B
--- krozat/krozat.cpp.orig 2009-11-17 13:40:31.000000000 +0000
|
|
+++ krozat/krozat.cpp 2009-11-17 13:50:20.000000000 +0000
|
|
@@ -849,7 +849,8 @@
|
|
|
|
if (!mImage.load(fpath))
|
|
{
|
|
- printf(i18n("Failed to load image \"%1\"\n").arg(fpath).local8Bit());
|
|
+ /***Adding %s seems to fix this - I hope. tmw***/
|
|
+ printf("%s", i18n("Failed to load image \"%1\"\n").arg(fpath).local8Bit());
|
|
mFileList.remove(fname);
|
|
if (!mFileList.isEmpty())
|
|
loadNextImage();
|