binary-io: avoid potential compilation warning
authorEric Blake <ebb9@byu.net>
Wed, 16 Dec 2009 16:24:23 +0000 (09:24 -0700)
committerEric Blake <ebb9@byu.net>
Thu, 17 Dec 2009 02:25:28 +0000 (19:25 -0700)
* lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
directives.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
lib/binary-io.h

index fe1b6f8..013360d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2009-12-16  Eric Blake  <ebb9@byu.net>
 
+       binary-io: avoid potential compilation warning
+       * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
+       directives.
+
        fflush: avoid compilation error on NetBSD
        * lib/fflush.c (update_fpos_cache): Use a union to safely convert
        between off_t and fpos_t, since the latter is sometimes a struct.
index b1dc629..9851511 100644 (file)
@@ -1,5 +1,6 @@
 /* Binary mode I/O.
-   Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2003, 2005, 2008, 2009 Free Software
+   Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -45,9 +46,9 @@
 # endif
 # ifdef __DJGPP__
 #  include <unistd.h> /* declares isatty() */
-#  /* Avoid putting stdin/stdout in binary mode if it is connected to the
-#     console, because that would make it impossible for the user to
-#     interrupt the program through Ctrl-C or Ctrl-Break.  */
+   /* Avoid putting stdin/stdout in binary mode if it is connected to
+      the console, because that would make it impossible for the user
+      to interrupt the program through Ctrl-C or Ctrl-Break.  */
 #  define SET_BINARY(fd) (!isatty (fd) ? (setmode (fd, O_BINARY), 0) : 0)
 # else
 #  define SET_BINARY(fd) setmode (fd, O_BINARY)