diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-02-26 18:52:21 +0100 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-03 18:22:48 +0100 |
commit | 33c5506e97dc04a46fb7e06c03de144b66788520 (patch) | |
tree | 0b272011fed86146d3e184d36988d977fd57e40b /utils | |
parent | 9fa4711e364e9aa779d6b8d12220bbb63dbb1f3d (diff) |
disable build warnings in utils
Disable some build warnings in utils.
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/getconf.c | 1 | ||||
-rw-r--r-- | utils/ldconfig.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/utils/getconf.c b/utils/getconf.c index 812783ecf..5ff98e6fc 100644 --- a/utils/getconf.c +++ b/utils/getconf.c @@ -15,6 +15,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#define _GNU_SOURCE 1 #include <unistd.h> #include <errno.h> #include <string.h> diff --git a/utils/ldconfig.c b/utils/ldconfig.c index a25de260a..024be7ca4 100644 --- a/utils/ldconfig.c +++ b/utils/ldconfig.c @@ -568,7 +568,7 @@ static char *get_extpath(void) if ((file = fopen(realconffile, "r")) != NULL) { fstat(fileno(file), &st); res = xmalloc(st.st_size + 1); - fread(res, 1, st.st_size, file); + (void)fread(res, 1, st.st_size, file); fclose(file); res[st.st_size] = '\0'; |