diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-09-21 16:18:22 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-09-21 16:18:22 +0300 |
commit | af57879ea050c7258c92a6aef840dd5da51ccbd3 (patch) | |
tree | dcff2896190bc013e56c9a3cf27d5c5652ca61a7 /build/parseChangelog.c | |
parent | 312ceee39240c321a0cb8f1cc7aad939477b9699 (diff) | |
download | librpm-tizen-af57879ea050c7258c92a6aef840dd5da51ccbd3.tar.gz librpm-tizen-af57879ea050c7258c92a6aef840dd5da51ccbd3.tar.bz2 librpm-tizen-af57879ea050c7258c92a6aef840dd5da51ccbd3.zip |
Remove bunch of double consts in librpmbuild
Diffstat (limited to 'build/parseChangelog.c')
-rw-r--r-- | build/parseChangelog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/parseChangelog.c b/build/parseChangelog.c index b727b907d..e34f14842 100644 --- a/build/parseChangelog.c +++ b/build/parseChangelog.c @@ -40,7 +40,7 @@ static int dateToTimet(const char * datestr, time_t * secs) static const char * const months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", NULL }; - static const char const lengths[] = + static const char lengths[] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; memset(&time, 0, sizeof(time)); |