aboutsummaryrefslogtreecommitdiff
path: root/libbb/get_last_path_component.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-29 22:51:25 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-29 22:51:25 +0000
commitb6aae0f38194cd39960a898606ee65d4be93a895 (patch)
treeb73c92aefaf614291a71d05e9d28ca68f4ef021b /libbb/get_last_path_component.c
parenta41fdf331af344ecd3ec230a072857ea197e1890 (diff)
downloadbusybox-w32-b6aae0f38194cd39960a898606ee65d4be93a895.tar.gz
busybox-w32-b6aae0f38194cd39960a898606ee65d4be93a895.tar.bz2
busybox-w32-b6aae0f38194cd39960a898606ee65d4be93a895.zip
preparatory patch for -Wwrite-strings #2
Diffstat (limited to 'libbb/get_last_path_component.c')
-rw-r--r--libbb/get_last_path_component.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/get_last_path_component.c b/libbb/get_last_path_component.c
index 311909726..b7bc0e626 100644
--- a/libbb/get_last_path_component.c
+++ b/libbb/get_last_path_component.c
@@ -26,7 +26,7 @@ char *bb_get_last_path_component(char *path)
26 if (*first == '/') { 26 if (*first == '/') {
27 last = first; 27 last = first;
28 } 28 }
29 last[1] = 0; 29 last[1] = '\0';
30 30
31 return first; 31 return first;
32} 32}