diff options
Diffstat (limited to 'bin/ls')
-rw-r--r-- | bin/ls/lomac.c | 2 | ||||
-rw-r--r-- | bin/ls/lomac.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/ls/lomac.c b/bin/ls/lomac.c index e1462e0..8ee215a 100644 --- a/bin/ls/lomac.c +++ b/bin/ls/lomac.c @@ -106,7 +106,7 @@ lomac_stop(void) */ char * -get_lattr(FTSENT *ent) +get_lattr(const FTSENT *ent) { char *lattr; diff --git a/bin/ls/lomac.h b/bin/ls/lomac.h index be30a7f..4a7ad3e 100644 --- a/bin/ls/lomac.h +++ b/bin/ls/lomac.h @@ -37,4 +37,4 @@ void lomac_start(void); void lomac_stop(void); -char *get_lattr(FTSENT *); +char *get_lattr(const FTSENT *); |