summaryrefslogtreecommitdiff
path: root/paxlib
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2010-09-04 23:38:29 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2010-09-04 23:39:09 -0700
commitfa3a309fda1233242596ce74eabf658d39654e56 (patch)
tree5ffd547cb20ffbbe5fcdd3cd8f0aa05eb1a8be6a /paxlib
parent2a4321c57456bb92e3e83af93622c5b9acc05a56 (diff)
downloadpaxutils-fa3a309fda1233242596ce74eabf658d39654e56.tar.gz
paxutils: remove lint discovered by Sun C compiler
* paxlib/paxlib.h (pax_exit): Remove stray semicolon that I introduced in the previous patch; sorry about that. * tests/genfile.c (print_stat): Don't assume that mode_t promotes to unsigned int when calling a varargs function; that assumption is not portable.
Diffstat (limited to 'paxlib')
-rw-r--r--paxlib/paxlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/paxlib/paxlib.h b/paxlib/paxlib.h
index 4aaf2eb..eeb445e 100644
--- a/paxlib/paxlib.h
+++ b/paxlib/paxlib.h
@@ -100,7 +100,7 @@ void waitpid_error (char const *);
void write_error (char const *);
void write_error_details (char const *, size_t, size_t);
-void pax_exit (void) __attribute__ ((noreturn));;
+void pax_exit (void) __attribute__ ((noreturn));
void fatal_exit (void) __attribute__ ((noreturn));
#define STRINGIFY_BIGINT(i, b) umaxtostr (i, b)