diff options
Diffstat (limited to 'calendar/conduits')
-rw-r--r-- | calendar/conduits/calendar/calendar-conduit.c | 13 | ||||
-rw-r--r-- | calendar/conduits/memo/memo-conduit.c | 13 | ||||
-rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 10 |
3 files changed, 22 insertions, 14 deletions
diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c index f18480007c..f423b56254 100644 --- a/calendar/conduits/calendar/calendar-conduit.c +++ b/calendar/conduits/calendar/calendar-conduit.c @@ -834,9 +834,10 @@ local_record_to_pilot_record (ECalLocalRecord *local, ECalConduitContext *ctxt) { GnomePilotRecord p; - static char record[0xffff]; #ifdef PILOT_LINK_0_12 pi_buffer_t * buffer; +#else + static char record[0xffff]; #endif g_assert (local->comp != NULL); @@ -1729,6 +1730,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, { static GList *comps, *iterator; static int count; + GList *unused; g_return_val_if_fail (local != NULL, -1); @@ -1747,7 +1749,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); iterator = comps; } else { @@ -1766,7 +1768,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "for_each ending" )); @@ -1787,6 +1789,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, { static GList *iterator; static int count; + GList *unused; g_return_val_if_fail (local != NULL, -1); @@ -1809,7 +1812,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "no events" )); @@ -1827,7 +1830,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "for_each_modified ending" )); diff --git a/calendar/conduits/memo/memo-conduit.c b/calendar/conduits/memo/memo-conduit.c index 6c6fcaa120..8c43da6a38 100644 --- a/calendar/conduits/memo/memo-conduit.c +++ b/calendar/conduits/memo/memo-conduit.c @@ -467,9 +467,10 @@ local_record_to_pilot_record (EMemoLocalRecord *local, EMemoConduitContext *ctxt) { GnomePilotRecord p; - static char record[0xffff]; #ifdef PILOT_LINK_0_12 pi_buffer_t * buffer; +#else + static char record[0xffff]; #endif g_assert (local->comp != NULL); @@ -1020,6 +1021,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, { static GList *comps, *iterator; static int count; + GList *unused; g_return_val_if_fail (local != NULL, -1); @@ -1038,7 +1040,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); iterator = comps; } else { LOG (g_message ( "no events" )); @@ -1058,7 +1060,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "for_each ending" )); @@ -1079,6 +1081,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, { static GList *iterator; static int count; + GList *unused; g_return_val_if_fail (local != NULL, 0); @@ -1101,7 +1104,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "no events" )); @@ -1120,7 +1123,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "for_each_modified ending" )); diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 315c59c064..7ae7b32d2f 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -1207,6 +1207,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, { static GList *comps, *iterator; static int count; + GList *unused; g_return_val_if_fail (local != NULL, -1); @@ -1225,7 +1226,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); iterator = comps; } else { @@ -1244,7 +1245,7 @@ for_each (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "for_each ending" )); @@ -1265,6 +1266,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, { static GList *iterator; static int count; + GList *unused; g_return_val_if_fail (local != NULL, 0); @@ -1287,7 +1289,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "no events" )); @@ -1305,7 +1307,7 @@ for_each_modified (GnomePilotConduitSyncAbs *conduit, /* NOTE: ignore the return value, otherwise ctxt->locals * gets messed up. The calling function keeps track of * the *local variable */ - g_list_prepend (ctxt->locals, *local); + unused = g_list_prepend (ctxt->locals, *local); } else { LOG (g_message ( "for_each_modified ending" )); |