diff options
| author | Chen Fan | 2014-11-05 09:40:33 +0100 |
|---|---|---|
| committer | Michael Tokarev | 2014-11-11 15:36:19 +0100 |
| commit | 8f9d989cac7bd92fb976d65d0aada2d4c6d8ecf9 (patch) | |
| tree | 2a21c73e22334c009b53f83e3ec00c25c5d2afa3 | |
| parent | xen-hvm: Remove redundant variable 'xstate' (diff) | |
| download | qemu-8f9d989cac7bd92fb976d65d0aada2d4c6d8ecf9.tar.gz qemu-8f9d989cac7bd92fb976d65d0aada2d4c6d8ecf9.tar.xz qemu-8f9d989cac7bd92fb976d65d0aada2d4c6d8ecf9.zip | |
target-i386: cpu: keeping function parameters alignment on new line
Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
| -rw-r--r-- | target-i386/cpu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index e4ccee133a..236bbeeeee 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -533,8 +533,8 @@ void host_cpuid(uint32_t function, uint32_t count, * otherwise the string is assumed to sized by a terminating nul. * Return lexical ordering of *s1:*s2. */ -static int sstrcmp(const char *s1, const char *e1, const char *s2, - const char *e2) +static int sstrcmp(const char *s1, const char *e1, + const char *s2, const char *e2) { for (;;) { if (!*s1 || !*s2 || *s1 != *s2) @@ -1845,7 +1845,7 @@ static void x86_cpu_parse_featurestr(CPUState *cs, char *features, * if flags, suppress names undefined in featureset. */ static void listflags(char *buf, int bufsize, uint32_t fbits, - const char **featureset, uint32_t flags) + const char **featureset, uint32_t flags) { const char **p = &featureset[31]; char *q, *b, bit; |
