Fix compilation error

screen.o: In function `show_free_space':
/home/dsterba/_dev/mc-build/src/screen.c:783: undefined reference to
`mhl_mem_free'
/home/dsterba/_dev/mc-build/src/screen.c:784: undefined reference to
`mhl_str_dup'

Signed-off-by: David Sterba <dave@jikos.cz>
This commit is contained in:
Mikhail S. Pobolovets 2009-02-17 19:41:02 +02:00
parent cc69f5d278
commit 3dad27bfe5
1 changed files with 2 additions and 2 deletions

View File

@ -780,8 +780,8 @@ show_free_space (WPanel *panel)
char rpath[PATH_MAX];
init_my_statfs ();
mhl_mem_free (old_cwd);
old_cwd = mhl_str_dup (panel->cwd);
g_free (old_cwd);
old_cwd = g_strdup (panel->cwd);
if (mc_realpath (panel->cwd, rpath) == NULL)
return;