Fixed typo
[yaz-moved-to-github.git] / zoom / zoomtst5.c
index c88b762..446b6aa 100644 (file)
@@ -1,10 +1,7 @@
-/* $Id: zoomtst5.c,v 1.12 2007-01-03 08:42:17 adam Exp $  */
-
-/** \file zoomtst5.c
-    \brief Asynchronous multi-target client with sort
-    
-    Asynchronous multi-target client doing search, sort and present
-*/
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) 1995-2010 Index Data
+ * See the file LICENSE for details.
+ */
 
 #include <stdio.h>
 #include <string.h>
@@ -107,7 +104,10 @@ int main(int argc, char **argv)
                     printf ("%d %s %s\n", pos+1, syntax, 
                             (db ? db : "unknown"));
                     if (rec)
-                        fwrite (str, 1, len, stdout);
+                    {
+                        if (fwrite (str, 1, len, stdout) != (size_t) len)
+                            printf("write to stdout failed\n");
+                    }
                     printf ("\n");
                 }
             }
@@ -127,6 +127,7 @@ int main(int argc, char **argv)
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab