Commit 681b5028 by David Edelsohn Committed by David Edelsohn

* io/transfer.c (read_sf): Change bitwise "and" to logical "and".

From-SVN: r92094
parent 18faa5da
2004-12-13 David Edelsohn <edelsohn@gnu.org>
* io/transfer.c (read_sf): Change bitwise "and" to logical "and".
2004-12-12 Richard Henderson <rth@redhat.com>
* intrinsics/cshift0.c, intrinsics/eoshift0.c, intrinsics/eoshift2.c,
......
......@@ -162,7 +162,7 @@ read_sf (int *length)
/* If we have a line without a terminating \n, drop through to
EOR below. */
if (readlen < 1 & n == 0)
if (readlen < 1 && n == 0)
{
generate_error (ERROR_END, NULL);
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment