Removed const from getBuildTime().

This commit is contained in:
Дмитрий Левин 2006-05-15 04:54:03 +04:00
parent df61ee0b9e
commit bbddd38759
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ gid_t getGidS(const char *gname)
return gids[x]; return gids[x];
} }
int_32 *const getBuildTime(void) int_32 * getBuildTime(void)
{ {
static int_32 buildTime[1]; static int_32 buildTime[1];

View File

@ -146,7 +146,7 @@ extern /*@observer@*/ const char * buildHost(void) /*@*/;
* Return build time stamp. * Return build time stamp.
* @return build time stamp * @return build time stamp
*/ */
extern /*@observer@*/ int_32 * const getBuildTime(void) /*@*/; extern /*@observer@*/ int_32 * getBuildTime(void) /*@*/;
/** \ingroup rpmbuild /** \ingroup rpmbuild
* Read next line from spec file. * Read next line from spec file.