1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Added reference to unused variable to avoid GCC 4.6 warning.

This commit is contained in:
Oliver Schmidt 2013-05-06 23:31:00 +02:00
parent 55667b94fb
commit 2e7fdb23ee
2 changed files with 6 additions and 1 deletions

View 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
}

View 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;