diff options
author | Roy Marples <roy@marples.name> | 2008-02-01 19:54:46 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-02-01 19:54:46 +0000 |
commit | fef5d0af591c6c8a91f69bba5e62c99df1a732c9 (patch) | |
tree | 8a3709e9e00a84f8211a6816afaf27d3166d8d76 /src/librc | |
parent | f12f3e0641430b9011e21e2ba7781035d545b4ed (diff) |
Constantise as much as possible so that it reduces COW usage.
Diffstat (limited to 'src/librc')
-rw-r--r-- | src/librc/librc-depend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librc/librc-depend.c b/src/librc/librc-depend.c index 6e6847aa..d74fd342 100644 --- a/src/librc/librc-depend.c +++ b/src/librc/librc-depend.c @@ -661,7 +661,7 @@ static const deppair_t deppairs[] = { { NULL, NULL } }; -static const char *depdirs[] = +static const char *const depdirs[] = { RC_SVCDIR "/starting", RC_SVCDIR "/started", |