Skip to content

Commit

Permalink
Fix commas in enum definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Schwab committed Jan 11, 2010
1 parent 764b7aa commit 16ea782
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2010-01-11 Andreas Schwab <schwab@redhat.com>

* bits/confname.h: Add missing comma, remove trailing commas.

2010-01-10 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/bits/sigaction.h: SA_RESTART, SA_NODEFER,
Expand Down
6 changes: 3 additions & 3 deletions bits/confname.h
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ enum

_SC_THREAD_ROBUST_PRIO_INHERIT,
#define _SC_THREAD_ROBUST_PRIO_INHERIT _SC_THREAD_ROBUST_PRIO_INHERIT
_SC_THREAD_ROBUST_PRIO_PROTECT,
_SC_THREAD_ROBUST_PRIO_PROTECT
#define _SC_THREAD_ROBUST_PRIO_PROTECT _SC_THREAD_ROBUST_PRIO_PROTECT
};

Expand Down Expand Up @@ -667,11 +667,11 @@ enum
#define _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS
_CS_POSIX_V7_LPBIG_OFFBIG_LIBS,
#define _CS_POSIX_V7_LPBIG_OFFBIG_LIBS _CS_POSIX_V7_LPBIG_OFFBIG_LIBS
_CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS
_CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS,
#define _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS

_CS_V6_ENV,
#define _CS_V6_ENV _CS_V6_ENV
_CS_V7_ENV,
_CS_V7_ENV
#define _CS_V7_ENV _CS_V7_ENV
};

0 comments on commit 16ea782

Please sign in to comment.