]> granicus.if.org Git - check/commitdiff
remove tabs, replace with spaces
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 6 Nov 2012 04:10:09 +0000 (04:10 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 6 Nov 2012 04:10:09 +0000 (04:10 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@657 64e312b2-a51f-0410-8e61-82d0ca0eb02a

src/check_log.c

index 6343c57ce65c79082e170190dd3c1c2d71f4a88a..9933d9cb098404eb4c232b3ae577a3b5ee356eeb 100644 (file)
@@ -327,17 +327,17 @@ void subunit_lfun (SRunner *sr, FILE *file, enum print_output printmode,
       char *name = ck_strdup_printf ("%s:%s", tr->tcname, tr->tname);
       char *msg = tr_short_str (tr);
       switch (tr->rtype) {
-       case CK_PASS:
-         subunit_test_pass(name);
-         break;
-       case CK_FAILURE:
-         subunit_test_fail(name, msg);
-         break;
-       case CK_ERROR:
-         subunit_test_error(name, msg);
-         break;
-       default:
-         eprintf("Bad result type in subunit_lfun", __FILE__, __LINE__);
+      case CK_PASS:
+        subunit_test_pass(name);
+        break;
+      case CK_FAILURE:
+        subunit_test_fail(name, msg);
+        break;
+      case CK_ERROR:
+        subunit_test_error(name, msg);
+        break;
+      default:
+        eprintf("Bad result type in subunit_lfun", __FILE__, __LINE__);
         free(name);
         free(msg);
       }