]> granicus.if.org Git - strace/commitdiff
Remove stray commas in struct initializers. No code changes
authorDenys Vlasenko <dvlasenk@redhat.com>
Thu, 25 Aug 2011 08:21:13 +0000 (10:21 +0200)
committerDenys Vlasenko <dvlasenk@redhat.com>
Thu, 25 Aug 2011 08:21:13 +0000 (10:21 +0200)
* process.c: Remove stray commas in struct initializers.

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
process.c

index 4bab7268008f23e17310fa040a38530b04e8b405..5e0626289fe1a527229c61f7e99d1bcdcf54510e 100644 (file)
--- a/process.c
+++ b/process.c
@@ -1935,12 +1935,12 @@ sys_uname(struct tcb *tcp)
 static const struct xlat ptrace_cmds[] = {
 # ifndef FREEBSD
        { PTRACE_TRACEME,       "PTRACE_TRACEME"        },
-       { PTRACE_PEEKTEXT,      "PTRACE_PEEKTEXT",      },
-       { PTRACE_PEEKDATA,      "PTRACE_PEEKDATA",      },
-       { PTRACE_PEEKUSER,      "PTRACE_PEEKUSER",      },
-       { PTRACE_POKETEXT,      "PTRACE_POKETEXT",      },
-       { PTRACE_POKEDATA,      "PTRACE_POKEDATA",      },
-       { PTRACE_POKEUSER,      "PTRACE_POKEUSER",      },
+       { PTRACE_PEEKTEXT,      "PTRACE_PEEKTEXT"       },
+       { PTRACE_PEEKDATA,      "PTRACE_PEEKDATA"       },
+       { PTRACE_PEEKUSER,      "PTRACE_PEEKUSER"       },
+       { PTRACE_POKETEXT,      "PTRACE_POKETEXT"       },
+       { PTRACE_POKEDATA,      "PTRACE_POKEDATA"       },
+       { PTRACE_POKEUSER,      "PTRACE_POKEUSER"       },
        { PTRACE_CONT,          "PTRACE_CONT"           },
        { PTRACE_KILL,          "PTRACE_KILL"           },
        { PTRACE_SINGLESTEP,    "PTRACE_SINGLESTEP"     },
@@ -1953,43 +1953,43 @@ static const struct xlat ptrace_cmds[] = {
        { PTRACE_SETREGS,       "PTRACE_SETREGS"        },
 #  endif
 #  ifdef PTRACE_GETFPREGS
-       { PTRACE_GETFPREGS,     "PTRACE_GETFPREGS",     },
+       { PTRACE_GETFPREGS,     "PTRACE_GETFPREGS"      },
 #  endif
 #  ifdef PTRACE_SETFPREGS
-       { PTRACE_SETFPREGS,     "PTRACE_SETFPREGS",     },
+       { PTRACE_SETFPREGS,     "PTRACE_SETFPREGS"      },
 #  endif
 #  ifdef PTRACE_GETFPXREGS
-       { PTRACE_GETFPXREGS,    "PTRACE_GETFPXREGS",    },
+       { PTRACE_GETFPXREGS,    "PTRACE_GETFPXREGS"     },
 #  endif
 #  ifdef PTRACE_SETFPXREGS
-       { PTRACE_SETFPXREGS,    "PTRACE_SETFPXREGS",    },
+       { PTRACE_SETFPXREGS,    "PTRACE_SETFPXREGS"     },
 #  endif
 #  ifdef PTRACE_GETVRREGS
-       { PTRACE_GETVRREGS,     "PTRACE_GETVRREGS",     },
+       { PTRACE_GETVRREGS,     "PTRACE_GETVRREGS"      },
 #  endif
 #  ifdef PTRACE_SETVRREGS
-       { PTRACE_SETVRREGS,     "PTRACE_SETVRREGS",     },
+       { PTRACE_SETVRREGS,     "PTRACE_SETVRREGS"      },
 #  endif
 #  ifdef PTRACE_SETOPTIONS
-       { PTRACE_SETOPTIONS,    "PTRACE_SETOPTIONS",    },
+       { PTRACE_SETOPTIONS,    "PTRACE_SETOPTIONS"     },
 #  endif
 #  ifdef PTRACE_GETEVENTMSG
-       { PTRACE_GETEVENTMSG,   "PTRACE_GETEVENTMSG",   },
+       { PTRACE_GETEVENTMSG,   "PTRACE_GETEVENTMSG"    },
 #  endif
 #  ifdef PTRACE_GETSIGINFO
-       { PTRACE_GETSIGINFO,    "PTRACE_GETSIGINFO",    },
+       { PTRACE_GETSIGINFO,    "PTRACE_GETSIGINFO"     },
 #  endif
 #  ifdef PTRACE_SETSIGINFO
-       { PTRACE_SETSIGINFO,    "PTRACE_SETSIGINFO",    },
+       { PTRACE_SETSIGINFO,    "PTRACE_SETSIGINFO"     },
 #  endif
 #  ifdef PTRACE_GETREGSET
-       { PTRACE_GETREGSET,     "PTRACE_GETREGSET",     },
+       { PTRACE_GETREGSET,     "PTRACE_GETREGSET"      },
 #  endif
 #  ifdef PTRACE_SETREGSET
-       { PTRACE_SETREGSET,     "PTRACE_SETREGSET",     },
+       { PTRACE_SETREGSET,     "PTRACE_SETREGSET"      },
 #  endif
 #  ifdef PTRACE_SET_SYSCALL
-       { PTRACE_SET_SYSCALL,   "PTRACE_SET_SYSCALL",   },
+       { PTRACE_SET_SYSCALL,   "PTRACE_SET_SYSCALL"    },
 #  endif
 #  ifdef SUNOS4
        { PTRACE_READDATA,      "PTRACE_READDATA"       },