mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
Fix warning with -Wundef.
This commit is contained in:
parent
5cb2ef30f3
commit
8a3bce3a54
@ -90,7 +90,7 @@ my_mkdir (char *s, mode_t mode)
|
||||
if (result == 0) {
|
||||
s = get_absolute_name (s);
|
||||
|
||||
#if FIXME
|
||||
#ifdef FIXME
|
||||
tree_add_entry (tree, s);
|
||||
#endif
|
||||
|
||||
@ -103,7 +103,7 @@ int
|
||||
my_rmdir (char *s)
|
||||
{
|
||||
int result;
|
||||
#if FIXME
|
||||
#ifdef FIXME
|
||||
WTree *tree = 0;
|
||||
#endif
|
||||
|
||||
@ -112,7 +112,7 @@ my_rmdir (char *s)
|
||||
if (result == 0) {
|
||||
s = get_absolute_name (s);
|
||||
|
||||
#if FIXME
|
||||
#ifdef FIXME
|
||||
tree_remove_entry (tree, s);
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user