From d08f4a716fcfb012ae82d184b4cdd938048e4daa Mon Sep 17 00:00:00 2001 From: Joe Buehler Date: Wed, 19 Nov 2003 21:43:29 +0000 Subject: [PATCH] error-typo-20031119 confusion of == and = --- src/butm/file_tm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/butm/file_tm.c b/src/butm/file_tm.c index d918a69d8b..0b2193cda6 100644 --- a/src/butm/file_tm.c +++ b/src/butm/file_tm.c @@ -1636,7 +1636,7 @@ file_Seek(info, position) w = USD_SEEK(p->fid, startOff, SEEK_SET, &stopOff); if (w) - info->error == w; + info->error = w; if (hcmp(startOff, stopOff) != 0) ERROR_EXIT(BUTM_POSITION); @@ -1687,10 +1687,10 @@ file_SeekEODump(info, position) p = (struct progress *)info->tmRock; hset64(startOff, 0, 0); w = USD_SEEK(p->fid, startOff, SEEK_END, &stopOff); - if (w) - info->error == w; - if (w) + if (w) { + info->error = w; ERROR_EXIT(BUTM_POSITION); + } if (hgetlo(stopOff) % BUTM_BLOCKSIZE) ERROR_EXIT(BUTM_POSITION);