diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-12-15 16:23:27 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-12-15 16:23:27 +0000 |
commit | 30d3a445c4447b2d721f9521c6dcffe1581980d1 (patch) | |
tree | 0b303c1de6745d1a72d279e984579d20e300b6fa /gas | |
parent | c97ae6e42d043f16db13ed42db20fe7a478352a9 (diff) | |
download | gdb-30d3a445c4447b2d721f9521c6dcffe1581980d1.zip gdb-30d3a445c4447b2d721f9521c6dcffe1581980d1.tar.gz gdb-30d3a445c4447b2d721f9521c6dcffe1581980d1.tar.bz2 |
removed an unnecessary comment
Diffstat (limited to 'gas')
-rw-r--r-- | gas/read.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1585,7 +1585,7 @@ cons (nbytes) input_line_pointer--; /* Put terminator back into stream. */ demand_empty_rest_of_line (); -} /* cons() */ +} /* Put the contents of expression EXP into the object file using NBYTES bytes. If need_pass_2 is 1, this does nothing. */ @@ -2547,7 +2547,7 @@ s_include (arg) strcpy (path, include_dirs[i]); strcat (path, "/"); strcat (path, filename); - if (0 != (try = fopen (path, "r"))) + if (0 != (try = fopen (path, FOPEN_RT))) { fclose (try); goto gotit; |