diff options
author | Denis Vlasenko | 2007-06-12 08:52:02 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-06-12 08:52:02 +0000 |
commit | 15611bb95815de14bcb35f66bd10089a322ea30b (patch) | |
tree | 818f4e4a208cc04e37f2ea12fd4bda4eae30dd4c /archival/dpkg.c | |
parent | 16d58d75ee11f3b50550fbef7da12a4adbab66d4 (diff) | |
download | busybox-15611bb95815de14bcb35f66bd10089a322ea30b.zip busybox-15611bb95815de14bcb35f66bd10089a322ea30b.tar.gz |
A few more string duplicates found & eliminated
# size busybox_old busybox_unstripped
text data bss dec hex filename
679693 2700 15632 698025 aa6a9 busybox_old
679523 2700 15632 697855 aa5ff busybox_unstripped
Diffstat (limited to 'archival/dpkg.c')
-rw-r--r-- | archival/dpkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index 0ca2704..c40a932 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c @@ -714,7 +714,7 @@ static const char *describe_status(int status_num) { int status_want, status_state ; if (status_hashtable[status_num] == NULL || status_hashtable[status_num]->status == 0) - return "is not installed or flagged to be installed\n"; + return "is not installed or flagged to be installed"; status_want = get_status(status_num, 1); status_state = get_status(status_num, 3); |