From: Adam Dickmeiss Date: Fri, 16 Sep 2005 07:05:46 +0000 (+0000) Subject: Boolrean and rather than bitwise and X-Git-Tag: YAZ.2.1.10~60 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=dad26e5daa5c4a10b926d3cd4026bf1aeb01d19f Boolrean and rather than bitwise and --- diff --git a/zoom/zoom-benchmark.c b/zoom/zoom-benchmark.c index a73800c..5a0517c 100644 --- a/zoom/zoom-benchmark.c +++ b/zoom/zoom-benchmark.c @@ -1,5 +1,5 @@ /* - * $Id: zoom-benchmark.c,v 1.6 2005-09-15 20:51:16 marc Exp $ + * $Id: zoom-benchmark.c,v 1.7 2005-09-16 07:05:46 adam Exp $ * * Asynchronous multi-target client doing search and piggyback retrieval */ @@ -216,7 +216,7 @@ int main(int argc, char **argv) int error = 0; int progress = zoom_progress[event]; - if (event == ZOOM_EVENT_SEND_DATA | event == ZOOM_EVENT_RECV_DATA) + if (event == ZOOM_EVENT_SEND_DATA || event == ZOOM_EVENT_RECV_DATA) continue;