diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-07-19 13:06:30 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-07-19 13:06:30 -0400 |
commit | 19a601f7b2fc69201c296f0720459a32dda5f4c3 (patch) | |
tree | 91f80229dbf48b36f86f7e4cc80c38597a7f2ece /ports/sysdeps | |
parent | 075b9322c9e091b7e139f4c57e07d78d896c7a62 (diff) | |
download | glibc-19a601f7b2fc69201c296f0720459a32dda5f4c3.tar.gz glibc-19a601f7b2fc69201c296f0720459a32dda5f4c3.tar.xz glibc-19a601f7b2fc69201c296f0720459a32dda5f4c3.zip |
tile: add missing semicolon in <bits/ptrace.h>
Change 521c6785e1fc94d added the enum but missed the semicolon. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'ports/sysdeps')
-rw-r--r-- | ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h b/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h index 5740dacfe4..32e47c7874 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h @@ -165,7 +165,7 @@ enum __ptrace_peeksiginfo_flags { /* Read signals from a shared (process wide) queue. */ PTRACE_PEEKSIGINFO_SHARED = (1 << 0) -} +}; /* Perform process tracing functions. REQUEST is one of the values above, and determines the action to be taken. |