]> git.sur5r.net Git - cc65/commitdiff
Added reference to unused variable to avoid GCC 4.6 warning.
authorOliver Schmidt <ol.sc@web.de>
Mon, 6 May 2013 21:31:00 +0000 (23:31 +0200)
committerOliver Schmidt <ol.sc@web.de>
Mon, 6 May 2013 21:31:00 +0000 (23:31 +0200)
src/common/searchpath.c
src/sp65/koala.c

index 47dc3dfc952cdb169415e2d12a439879bd109a29..484d4a0612d7324b8d13c306f1f44f452bc4fa32 100644 (file)
@@ -195,6 +195,11 @@ void AddSubSearchPathFromWinBin (SearchPath* P, const char* SubDir)
     /* Add the search path */
     AddSearchPath (P, Dir);
 
+#else
+
+    (void) P;
+    (void) SubDir;
+
 #endif
 }
 
index 17beee91ab37e772338c36790e46cbecbe97f6cb..d66969348c9f43be1c23af1578ae90ecd274ffda 100644 (file)
@@ -96,7 +96,7 @@ StrBuf* GenKoala (const Bitmap* B, const Collection* A attribute ((unused)))
     SB_AppendChar (D, 0x44);
     
     /* TODO: The actual work ;-) */
-    (void)Screen;
+    (void) Screen;
 
     /* Return the converted bitmap */
     return D;