mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
Added reference to unused variable to avoid GCC 4.6 warning.
This commit is contained in:
parent
55667b94fb
commit
2e7fdb23ee
@ -195,6 +195,11 @@ void AddSubSearchPathFromWinBin (SearchPath* P, const char* SubDir)
|
||||
/* Add the search path */
|
||||
AddSearchPath (P, Dir);
|
||||
|
||||
#else
|
||||
|
||||
(void) P;
|
||||
(void) SubDir;
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user