Correct OUTPUT_C_HEADER

OUTPUT_FMT_C_HEADER

Change-Id: Ic1a583352ead8268efc39f1b89257e9c622e1613
diff --git a/build/make/obj_int_extract.c b/build/make/obj_int_extract.c
index dbd8c9e..8c16957 100644
--- a/build/make/obj_int_extract.c
+++ b/build/make/obj_int_extract.c
@@ -44,10 +44,10 @@
     case OUTPUT_FMT_RVDS:
       printf("%-40s EQU %5d\n", name, val);
       return 0;
-    case  OUTPUT_FMT_GAS:
+    case OUTPUT_FMT_GAS:
       printf(".set %-40s, %5d\n", name, val);
       return 0;
-    case OUTPUT_C_HEADER:
+    case OUTPUT_FMT_C_HEADER:
       printf("#define %-40s %5d\n", name, val);
       return 0;
     default: