From: Johann Date: Tue, 28 Jan 2014 23:57:33 +0000 (-0800) Subject: Correct OUTPUT_C_HEADER X-Git-Tag: v1.4.0~2566 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b83a395da0e8e992d1ebc510d8dab425c87ccdd;p=libvpx 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 dbd8c9ee2..8c169577c 100644 --- a/build/make/obj_int_extract.c +++ b/build/make/obj_int_extract.c @@ -44,10 +44,10 @@ int print_macho_equ(output_fmt_t mode, uint8_t* name, int val) { 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: