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.
gentoo-overlay/media-gfx/sfftobmp/files/sfftobmp-3.1.2-Wformat.patch

12 lines
342 B

--- a/src/output.cpp
+++ b/src/output.cpp
@@ -163,7 +163,7 @@
m_pFile->Write(acBuf, strlen(acBuf));
sprintf(acBuf, "%s", "# generated with SffToBmp\n");
m_pFile->Write(acBuf, strlen(acBuf));
- sprintf(acBuf, "%ld %ld\n", aWidth, aHeight);
+ sprintf(acBuf, "%u %u\n", aWidth, aHeight);
m_pFile->Write(acBuf, strlen(acBuf));
}