|
|
Author: petdance
Date: Tue Jun 19 19:29:14 2007
New Revision: 19157
Modified:
trunk/src/packfile.c
trunk/src/stacks.c
Log:
Added UNUSED vars
Modified: trunk/src/packfile.c
==============================================================================
--- trunk/src/packfile.c (original)
+++ trunk/src/packfile.c Tue Jun 19 19:29:14 2007
@@ -2823,6 +2823,7 @@
{
PackFile_Constant * const self =
mem_allocate_zeroed_typed(PackFile_Constant);
+ UNUSED(interp);
self->type = PFC_NONE;
Modified: trunk/src/stacks.c
==============================================================================
--- trunk/src/stacks.c (original)
+++ trunk/src/stacks.c Tue Jun 19 19:29:14 2007
@@ -383,6 +383,8 @@
get_entry_type(Interp *interp, const Stack_Entry_t *entry /*NN*/)
/* PURE, WARN_UNUSED */
{
+ UNUSED(interp);
+
return entry->entry_type;
}
|
|