Minor changes.
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 15 Oct 1998 13:09:29 +0000 (13:09 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 15 Oct 1998 13:09:29 +0000 (13:09 +0000)
bfile/cfile.c
bfile/cfile.h

index fcbae17..5a6209b 100644 (file)
@@ -4,7 +4,10 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: cfile.c,v $
- * Revision 1.22  1998-10-13 20:07:22  adam
+ * Revision 1.23  1998-10-15 13:09:29  adam
+ * Minor changes.
+ *
+ * Revision 1.22  1998/10/13 20:07:22  adam
  * Changed some log messages.
  *
  * Revision 1.21  1998/08/24 17:29:52  adam
@@ -129,7 +132,7 @@ CFile cf_open (MFile mf, MFile_area area, const char *fname,
 {
     char path[1024];
     int i;
-    CFile cf = xmalloc (sizeof(*cf));
+    CFile cf = (CFile) xmalloc (sizeof(*cf));
     int hash_bytes;
    
     cf->rmf = mf; 
index 5f21846..8006599 100644 (file)
@@ -4,7 +4,10 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: cfile.h,v $
- * Revision 1.9  1998-08-07 15:07:15  adam
+ * Revision 1.10  1998-10-15 13:09:31  adam
+ * Minor changes.
+ *
+ * Revision 1.9  1998/08/07 15:07:15  adam
  * Fixed but in cf_commit_flat.
  *
  * Revision 1.8  1996/04/18 16:02:56  adam
 
 #define HASH_BUCKET 15
 
+struct CFile_ph_bucket {     /* structure on disc */
+    int no[HASH_BUCKET];     /* block number in original file */
+    int vno[HASH_BUCKET];    /* block number in shadow file */
+    int this_bucket;         /* this bucket number */
+    int next_bucket;         /* next bucket number */
+};
+
 struct CFile_hash_bucket {
-    struct CFile_ph_bucket {     /* structure on disc */
-        int no[HASH_BUCKET];     /* block number in original file */
-        int vno[HASH_BUCKET];    /* block number in shadow file */
-        int this_bucket;         /* this bucket number */
-        int next_bucket;         /* next bucket number */
-    } ph;
+    struct CFile_ph_bucket ph;
     int dirty;
     struct CFile_hash_bucket *h_next, **h_prev;
     struct CFile_hash_bucket *lru_next, *lru_prev;