diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/base_cpudep.c | 4 | ||||
-rw-r--r-- | base/base_hash.c | 2 | ||||
-rw-r--r-- | base/base_memory.c | 2 | ||||
-rw-r--r-- | base/util_getopt.c | 3 |
4 files changed, 6 insertions, 5 deletions
diff --git a/base/base_cpudep.c b/base/base_cpudep.c index d51d011c..bd2d3e4a 100644 --- a/base/base_cpudep.c +++ b/base/base_cpudep.c @@ -205,8 +205,8 @@ void fz_cpudetect(void) fz_cpuflags = flags; -#if defined(ARCH_X86) || defined(ARCH_X86_64) - __asm__ __volatile__ ("emms\n\t"); +#if defined(ARCH_X86) || defined(ARCH_X86_64) + __asm__ __volatile__ ("emms\n\t"); #endif dumpflags(); diff --git a/base/base_hash.c b/base/base_hash.c index 37351b48..dedd1c5e 100644 --- a/base/base_hash.c +++ b/base/base_hash.c @@ -7,7 +7,7 @@ * correctly in this implementation so it wont start * exhibiting bad behaviour if entries are inserted * and removed frequently. - */ + */ #include "fitz-base.h" diff --git a/base/base_memory.c b/base/base_memory.c index 64d5e383..a14a3122 100644 --- a/base/base_memory.c +++ b/base/base_memory.c @@ -40,7 +40,7 @@ static fz_memorycontext *curmem = &defmem; fz_error fz_koutofmem = { -1, - {"out of memory"}, + {"out of memory"}, {"<malloc>"}, {"memory.c"}, 0 diff --git a/base/util_getopt.c b/base/util_getopt.c index c870e206..8025334e 100644 --- a/base/util_getopt.c +++ b/base/util_getopt.c @@ -107,10 +107,11 @@ int getopt(int nargc, char * const * nargv, const char *ostr) p, optopt); return(BADCH); } - else /* white space */ + else /* white space */ optarg = nargv[optind]; place = EMSG; ++optind; } return(optopt); /* dump back option letter */ } + |