Added typecast to avoid warnings on MSVC.
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 29 Sep 1997 07:17:31 +0000 (07:17 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 29 Sep 1997 07:17:31 +0000 (07:17 +0000)
odr/odr_seq.c
retrieval/d1_espec.c

index 1fede3d..3ea4d2b 100644 (file)
@@ -1,10 +1,13 @@
 /*
 /*
- * Copyright (c) 1995, Index Data
+ * Copyright (c) 1995-1997, Index Data
  * See the file LICENSE for details.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: odr_seq.c,v $
  * See the file LICENSE for details.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: odr_seq.c,v $
- * Revision 1.19  1997-06-23 10:31:11  adam
+ * Revision 1.20  1997-09-29 07:17:31  adam
+ * Added typecast to avoid warnings on MSVC.
+ *
+ * Revision 1.19  1997/06/23 10:31:11  adam
  * Added RVDM's SEQUENCE OF patch again!
  *
  * Revision 1.18  1997/05/14 06:53:58  adam
  * Added RVDM's SEQUENCE OF patch again!
  *
  * Revision 1.18  1997/05/14 06:53:58  adam
@@ -122,7 +125,7 @@ int odr_sequence_of(ODR o, Odr_fun type, void *p, int *num)
            while (odr_sequence_more(o))
            {
                /* outgrown array? */
            while (odr_sequence_more(o))
            {
                /* outgrown array? */
-               if (*num * sizeof(void*) >= size)
+               if (*num * (int) sizeof(void*) >= size)
                {
                    /* double the buffer size */
                    tmp = odr_malloc(o, sizeof(void*) * (size += size ? size :
                {
                    /* double the buffer size */
                    tmp = odr_malloc(o, sizeof(void*) * (size += size ? size :
index d164908..209d0fa 100644 (file)
@@ -1,10 +1,13 @@
 /*
 /*
- * Copyright (c) 1995, Index Data.
+ * Copyright (c) 1995-1997, Index Data.
  * See the file LICENSE for details.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: d1_espec.c,v $
  * See the file LICENSE for details.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: d1_espec.c,v $
- * Revision 1.9  1997-09-17 12:10:35  adam
+ * Revision 1.10  1997-09-29 07:21:10  adam
+ * Added typecast to avoid warnings on MSVC.
+ *
+ * Revision 1.9  1997/09/17 12:10:35  adam
  * YAZ version 1.4.
  *
  * Revision 1.8  1997/09/05 09:50:56  adam
  * YAZ version 1.4.
  *
  * Revision 1.8  1997/09/05 09:50:56  adam
@@ -295,7 +298,7 @@ Z_Espec1 *data1_read_espec1 (data1_handle dh, const char *file, ODR o)
            
            if (!res->elements)
                res->elements = odr_malloc(o, size_esn = 24*sizeof(er));
            
            if (!res->elements)
                res->elements = odr_malloc(o, size_esn = 24*sizeof(er));
-           else if (res->num_elements >= size_esn/sizeof(er))
+           else if (res->num_elements >= (int) (size_esn/sizeof(er)))
            {
                size_esn *= 2;
                if (o)
            {
                size_esn *= 2;
                if (o)