diff options
-rw-r--r-- | utility.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -482,10 +482,10 @@ static const mode_t MBIT[] = { | |||
482 | S_IROTH, S_IWOTH, S_IXOTH | 482 | S_IROTH, S_IWOTH, S_IXOTH |
483 | }; | 483 | }; |
484 | 484 | ||
485 | #define MODE1 "rwxrwxrwx" | 485 | static const char MODE1[] = "rwxrwxrwx"; |
486 | #define MODE0 "---------" | 486 | static const char MODE0[] = "---------"; |
487 | #define SMODE1 "..s..s..t" | 487 | static const char SMODE1[] = "..s..s..t"; |
488 | #define SMODE0 "..S..S..T" | 488 | static const char SMODE0[] = "..S..S..T"; |
489 | 489 | ||
490 | /* | 490 | /* |
491 | * Return the standard ls-like mode string from a file mode. | 491 | * Return the standard ls-like mode string from a file mode. |