]> Git Repo - qemu.git/commitdiff
target-i386: cpu: keeping function parameters alignment on new line
authorChen Fan <[email protected]>
Wed, 5 Nov 2014 08:40:33 +0000 (16:40 +0800)
committerMichael Tokarev <[email protected]>
Tue, 11 Nov 2014 14:36:19 +0000 (17:36 +0300)
Signed-off-by: Chen Fan <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
target-i386/cpu.c

index e4ccee133af153707b573fcd8719a40a692ffe8d..236bbeeeee12d33b197e44421eeb3e8445cbded6 100644 (file)
@@ -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;
This page took 0.030082 seconds and 4 git commands to generate.