mirror of https://github.com/MidnightCommander/mc
* direntry.c (vfs_s_free_super): Remove i18n on commented out
developer-only code.
This commit is contained in:
parent
849fecec4c
commit
0b36c6e5eb
|
@ -1,5 +1,8 @@
|
|||
2001-08-16 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* direntry.c (vfs_s_free_super): Remove i18n on commented out
|
||||
developer-only code.
|
||||
|
||||
* extfs.c (extfs_init): Internationalize error message, it's
|
||||
already in sfs.c.
|
||||
|
||||
|
|
|
@ -430,10 +430,12 @@ vfs_s_free_super (vfs *me, vfs_s_super *super)
|
|||
#if 0
|
||||
/* FIXME: We currently leak small ammount of memory, sometimes. Fix it if you can. */
|
||||
if (super->ino_usage)
|
||||
message_1s1d (1, _(" Direntry warning "), _("Super ino_usage is %d, memory leak"), super->ino_usage);
|
||||
message_1s1d (1, " Direntry warning ",
|
||||
"Super ino_usage is %d, memory leak",
|
||||
super->ino_usage);
|
||||
|
||||
if (super->want_stale)
|
||||
message_1s (1, _(" Direntry warning "), _("Super has want_stale set"));
|
||||
message_1s (1, " Direntry warning ", "Super has want_stale set");
|
||||
#endif
|
||||
|
||||
if (super->prevp){
|
||||
|
|
Loading…
Reference in New Issue