diff options
author | jbj <devnull@localhost> | 2001-08-03 05:04:13 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-08-03 05:04:13 +0000 |
commit | 46d2e8bbd870dce29f43af7c67f50c97754975bd (patch) | |
tree | 1a1ad64eabae563bf1f3eee476deaca93de94f24 /build/names.c | |
parent | 1a5a027bcc8071a3b50f726bf8a3e93cd770ef1d (diff) | |
download | librpm-tizen-46d2e8bbd870dce29f43af7c67f50c97754975bd.tar.gz librpm-tizen-46d2e8bbd870dce29f43af7c67f50c97754975bd.tar.bz2 librpm-tizen-46d2e8bbd870dce29f43af7c67f50c97754975bd.zip |
- fix: i18n tags not terminated correctly with NUL (#50304).
- add explicit casts to work around a s390 compiler problem.
CVS patchset: 4998
CVS date: 2001/08/03 05:04:13
Diffstat (limited to 'build/names.c')
-rw-r--r-- | build/names.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/names.c b/build/names.c index 4c517a3a7..4438b403f 100644 --- a/build/names.c +++ b/build/names.c @@ -159,7 +159,7 @@ int_32 *const getBuildTime(void) static int_32 buildTime[1]; if (buildTime[0] == 0) - buildTime[0] = time(NULL); + buildTime[0] = (int_32) time(NULL); return buildTime; } |