]> granicus.if.org Git - check/commitdiff
removing variable that is written but never read
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 6 Nov 2012 04:10:23 +0000 (04:10 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 6 Nov 2012 04:10:23 +0000 (04:10 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@658 64e312b2-a51f-0410-8e61-82d0ca0eb02a

src/check_log.c

index 9933d9cb098404eb4c232b3ae577a3b5ee356eeb..6af444e3db30a45b56db16b2c6fcebef6cb5916d 100644 (file)
@@ -293,7 +293,6 @@ void subunit_lfun (SRunner *sr, FILE *file, enum print_output printmode,
                  void *obj, enum cl_event evt)
 {
   TestResult *tr;
-  Suite *s;
   char const * name;
   
   /* assert(printmode == CK_SUBUNIT); */
@@ -306,7 +305,6 @@ void subunit_lfun (SRunner *sr, FILE *file, enum print_output printmode,
   case CLSTART_SR:
     break;
   case CLSTART_S:
-    s = obj;
     break;
   case CLEND_SR:
     if (printmode > CK_SILENT) {
@@ -315,7 +313,6 @@ void subunit_lfun (SRunner *sr, FILE *file, enum print_output printmode,
     }
     break;
   case CLEND_S:
-    s = obj;
     break;
   case CLSTART_T:
     name = obj;