1
0
Fork 0

Fixed a bug where the wrong variable was being initialized.

This commit is contained in:
curt 1998-05-02 01:49:21 +00:00
parent 7989d27bf8
commit af753f2679

View file

@ -375,7 +375,7 @@ void fgDEM::read_b_record( void ) {
int fgDEM::parse( void ) { int fgDEM::parse( void ) {
int i; int i;
cur_row = 0; cur_col = 0;
read_a_record(); read_a_record();
@ -772,6 +772,9 @@ fgDEM::~fgDEM( void ) {
// $Log$ // $Log$
// Revision 1.6 1998/05/02 01:49:21 curt
// Fixed a bug where the wrong variable was being initialized.
//
// Revision 1.5 1998/04/25 15:00:32 curt // Revision 1.5 1998/04/25 15:00:32 curt
// Changed "r" to "rb" in gzopen() options. This fixes bad behavior in win32. // Changed "r" to "rb" in gzopen() options. This fixes bad behavior in win32.
// //