Fix registry keys for VC runtime
[yaz-moved-to-github.git] / zoom / zoom-bug-641.c
index d8afa4d..3275a90 100644 (file)
@@ -1,8 +1,7 @@
-/* $Id: zoom-bug-641.c,v 1.2 2007-01-03 08:42:17 adam Exp $  */
-
-/** \file zoom-bug641.c
-    \brief Program to illustrate bug 641
-*/
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) Index Data
+ * See the file LICENSE for details.
+ */
 
 #include <stdio.h>
 #include <sys/types.h>
@@ -49,7 +48,7 @@ int main(int argc, char **argv)
         }
         size = statbuf.st_size;
         printf("size=%lu\n", (unsigned long) size);
-        buf = xmalloc(size+1);
+        buf = (char *) xmalloc(size+1);
         while ((n = read(fd, &buf[offset], size)) < size) {
             if (n < 0) {
                 perror("read");
@@ -84,7 +83,9 @@ 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
  */
+