From 748279de991e0f20c4936ef92141dfe5983263ec Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Mon, 16 Aug 2004 16:22:35 +0000 Subject: [PATCH] Added more const-ness to the function arguments. --- src/hotlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotlist.c b/src/hotlist.c index e8f3fcca7..803a569f4 100644 --- a/src/hotlist.c +++ b/src/hotlist.c @@ -262,7 +262,7 @@ unlink_entry (struct hotlist *entry) } #ifdef USE_VFS -static void add_name_to_list (char *path) +static void add_name_to_list (const char *path) { listbox_add_item (l_hotlist, 0, 0, path, 0); }