Constify to squash some warnings.

This commit is contained in:
markm 2002-10-23 10:15:44 +00:00
parent b729fd6d31
commit eda1974761
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ lomac_stop(void)
*/
char *
get_lattr(FTSENT *ent)
get_lattr(const FTSENT *ent)
{
char *lattr;

View File

@ -37,4 +37,4 @@
void lomac_start(void);
void lomac_stop(void);
char *get_lattr(FTSENT *);
char *get_lattr(const FTSENT *);