Changeset aec5da4 in rtems
- Timestamp:
- 03/25/99 21:42:52 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 23291e99
- Parents:
- 5e2fe06
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i386/pc386/tools/bin2boot.c
r5e2fe06 raec5da4 70 70 71 71 ofile = argv[optind]; 72 ofp = fopen(ofile, "w ");72 ofp = fopen(ofile, "wb"); 73 73 if(ofp == NULL) 74 74 { … … 106 106 optind++; 107 107 ifile = argv[optind]; 108 ifp = fopen(ifile,"r ");108 ifp = fopen(ifile,"rb"); 109 109 if(ifp == NULL) 110 110 { … … 213 213 optind++; 214 214 ifile = argv[optind]; 215 ifp = fopen(ifile,"r ");215 ifp = fopen(ifile,"rb"); 216 216 if(ifp == NULL) 217 217 {
Note: See TracChangeset
for help on using the changeset viewer.