diff options
author | jbj <devnull@localhost> | 2001-05-03 21:00:18 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-05-03 21:00:18 +0000 |
commit | d78e027808deb6aef4e65338d160986d7e576a90 (patch) | |
tree | 53cddb260f6b5a0fab362b6c0f6f3375d0cacb8b /build/names.c | |
parent | 0ecdbba93587408c670124e88d39451c681a77eb (diff) | |
download | librpm-tizen-d78e027808deb6aef4e65338d160986d7e576a90.tar.gz librpm-tizen-d78e027808deb6aef4e65338d160986d7e576a90.tar.bz2 librpm-tizen-d78e027808deb6aef4e65338d160986d7e576a90.zip |
- still more boring lclint annotations and fiddles.
CVS patchset: 4738
CVS date: 2001/05/03 21:00:18
Diffstat (limited to 'build/names.c')
-rw-r--r-- | build/names.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/names.c b/build/names.c index 03e08dc0d..4b9e4acaf 100644 --- a/build/names.c +++ b/build/names.c @@ -17,6 +17,7 @@ static gid_t gids[1024]; /*@owned@*/ /*@null@*/ static const char *gnames[1024]; static int gid_used = 0; +/*@-nullderef@*/ /* FIX: shrug */ void freeNames(void) { int x; @@ -109,6 +110,7 @@ const char *getGnameS(const char *gname) gnames[x] = (gr ? xstrdup(gr->gr_name) : xstrdup(gname)); return gnames[x]; } +/*@=nullderef@*/ time_t *const getBuildTime(void) { |