projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a93a4d5
)
fix initial name string for New Directory action
author
Mike Blumenkrantz
<michael.blumenkrantz@gmail.com>
Wed, 12 Dec 2012 10:12:29 +0000
(10:12 +0000)
committer
Mike Blumenkrantz
<michael.blumenkrantz@gmail.com>
Wed, 12 Dec 2012 10:12:29 +0000
(10:12 +0000)
SVN revision: 80748
src/bin/e_fm.c
patch
|
blob
|
history
diff --git
a/src/bin/e_fm.c
b/src/bin/e_fm.c
index
97da44b
..
e917174
100644
(file)
--- a/
src/bin/e_fm.c
+++ b/
src/bin/e_fm.c
@@
-9330,7
+9330,7
@@
_e_fm2_new_thread_helper(Ecore_Thread *eth, Eina_Bool dir)
goto error;
for (x = 0; x < UINT_MAX; x++)
{
- snprintf(buf, sizeof(buf), "%s/%s %u", path, _("New File"), x);
+ snprintf(buf, sizeof(buf), "%s/%s %u", path,
dir ? _("New Directory") :
_("New File"), x);
errno = 0;
if (stat(buf, &st) && (errno == ENOENT))
{