Minor change in variable name in inotify.c.

src/inotify.c (Finotify_add_watch): Rename decoded_file_name to
 encoded_file_name, which is what it is.
This commit is contained in:
Eli Zaretskii 2012-12-11 10:24:09 +02:00
parent d46d2d3a70
commit 1b47babdb7
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2012-12-11 Eli Zaretskii <eliz@gnu.org>
* inotify.c (Finotify_add_watch): Rename decoded_file_name to
encoded_file_name, which is what it is.
2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
Consistently use marker_position and marker_byte_position.

View file

@ -325,7 +325,7 @@ is managed internally and there is no corresponding inotify_init. Use
{
uint32_t mask;
Lisp_Object watch_object;
Lisp_Object decoded_file_name;
Lisp_Object encoded_file_name;
Lisp_Object watch_descriptor;
int watchdesc = -1;
@ -345,8 +345,8 @@ is managed internally and there is no corresponding inotify_init. Use
}
mask = aspect_to_inotifymask (aspect);
decoded_file_name = ENCODE_FILE (file_name);
watchdesc = inotify_add_watch (inotifyfd, SSDATA (decoded_file_name), mask);
encoded_file_name = ENCODE_FILE (file_name);
watchdesc = inotify_add_watch (inotifyfd, SSDATA (encoded_file_name), mask);
if (watchdesc == -1)
report_file_error ("Could not add watch for file", Fcons (file_name, Qnil));