(map_w32_filename): Remove unused variable `is_fat'.
(chase_symlinks): Add parentheses around expression.
+2012-08-06 Juanma Barranquero <lekktu@gmail.com>
+
+ * w32.c: Silence compiler warnings.
+ (map_w32_filename): Remove unused variable `is_fat'.
+ (chase_symlinks): Add parentheses around expression.
+
2012-08-06 Glenn Morris <rgm@gnu.org>
* sysdep.c: Respect BROKEN_GETWD.
char c;
char * path;
const char * save_name = name;
- int is_fat = 0;
if (strlen (name) >= MAX_PATH)
{
{
target[res] = '\0';
if (!(IS_DEVICE_SEP (target[1])
- || IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
+ || (IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1]))))
{
/* Target is relative. Append it to the directory part of
the symlink, then copy the result back to target. */