projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc580f6
)
(mode_changed): Return false, not 0, now that the function returns `bool'.
author
Jim Meyering
<jim@meyering.net>
Wed, 9 Jun 2004 09:06:34 +0000
(09:06 +0000)
committer
Jim Meyering
<jim@meyering.net>
Wed, 9 Jun 2004 09:06:34 +0000
(09:06 +0000)
src/chmod.c
patch
|
blob
|
history
diff --git
a/src/chmod.c
b/src/chmod.c
index d9191a30d10a4bc75e441a06768dc883f24a449b..24450647a6c27a13f44c8865c23a627071c7d249 100644
(file)
--- a/
src/chmod.c
+++ b/
src/chmod.c
@@
-118,7
+118,7
@@
mode_changed (char const *file, mode_t old_mode, mode_t new_mode)
{
if (!force_silent)
error (0, errno, _("getting new attributes of %s"), quote (file));
- return
0
;
+ return
false
;
}
new_mode = new_stats.st_mode;