commit | b6aae0f38194cd39960a898606ee65d4be93a895 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Mon Jan 29 22:51:25 2007 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Mon Jan 29 22:51:25 2007 +0000 |
tree | b73c92aefaf614291a71d05e9d28ca68f4ef021b | |
parent | a41fdf331af344ecd3ec230a072857ea197e1890 [diff] [blame] |
preparatory patch for -Wwrite-strings #2
diff --git a/libbb/get_last_path_component.c b/libbb/get_last_path_component.c index 3119097..b7bc0e6 100644 --- a/libbb/get_last_path_component.c +++ b/libbb/get_last_path_component.c
@@ -26,7 +26,7 @@ if (*first == '/') { last = first; } - last[1] = 0; + last[1] = '\0'; return first; }