diff options
| author | Mark Murray <markm@FreeBSD.org> | 2002-10-23 10:15:44 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2002-10-23 10:15:44 +0000 |
| commit | 099bda679e8407bc4cd9c6379521e25ee04d5cba (patch) | |
| tree | 128deefc3ceb3000225a451fe445a6a56e82f80a /bin/ls | |
| parent | 64f82235d8194a9746195989d048c44f3f3948d3 (diff) | |
Notes
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 e1462e01cb60..8ee215aa53ef 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 be30a7f83472..4a7ad3e77e97 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 *); |
