about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJ.H.M. Dassen <rdassen@redhat.com>2009-06-09 07:58:02 -0700
committerUlrich Drepper <drepper@redhat.com>2009-06-09 07:58:02 -0700
commit88ea382fda5af7717f85bb19837c9c99094f3df4 (patch)
treeebd3bdd3c608f9d5afd973bf37146e9c1364f615
parent5612e80b3a740ee14cd1c87e61f8047d86ed3c73 (diff)
downloadglibc-88ea382fda5af7717f85bb19837c9c99094f3df4.tar.gz
glibc-88ea382fda5af7717f85bb19837c9c99094f3df4.tar.xz
glibc-88ea382fda5af7717f85bb19837c9c99094f3df4.zip
Remove comma at end of enum.
-rw-r--r--ChangeLog3
-rw-r--r--dlfcn/dlfcn.h5
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a55d38035b..70c0ed8839 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2009-06-09  Ulrich Drepper  <drepper@redhat.com>
 
+	* dlfcn/dlfcn.h: Remove comma at end of enum.
+	Patch by J.H.M. Dassen <rdassen@redhat.com>.
+
 	* libio/fileops.c (_IO_new_file_fopen): Don't prematurely stop
 	parsing mode string.
 
diff --git a/dlfcn/dlfcn.h b/dlfcn/dlfcn.h
index 7e373eddf9..3e461dfec0 100644
--- a/dlfcn/dlfcn.h
+++ b/dlfcn/dlfcn.h
@@ -1,6 +1,5 @@
 /* User functions for run-time dynamic loading.
-   Copyright (C) 1995-1999,2000,2001,2003,2004,2006
-	Free Software Foundation, Inc.
+   Copyright (C) 1995-2001,2003,2004,2006,2009 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -164,7 +163,7 @@ enum
        segment, or if the calling thread has not allocated a block for it.  */
     RTLD_DI_TLS_DATA = 10,
 
-    RTLD_DI_MAX = 10,
+    RTLD_DI_MAX = 10
   };