summaryrefslogtreecommitdiff
path: root/dev-scheme/gauche-cdb/files/gauche-cdb-0.3.1-undefined-reference.diff
blob: b63a68ddbda26f9fc94d993797eea57bb0b9071c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- Gauche-cdb-0.3.1.orig/cdb.scm
+++ Gauche-cdb-0.3.1/cdb.scm
@@ -60,7 +60,7 @@
   (unless (slot-bound? self 'path)
     (error "path must be set to open cdb database"))
   (when (cdb-file-of self)
-    (errorf "cdb ~S already opened" cdb))
+    (errorf "cdb ~s already opened" (cdb-file-of self)))
   (let ((path (slot-ref self 'path))
         (rwmode (slot-ref self 'rw-mode)))
     (case rwmode
--- Gauche-cdb-0.3.1.orig/cdb.stub
+++ Gauche-cdb-0.3.1/cdb.stub
@@ -69,7 +69,7 @@
 
  static void cdb_finalize(ScmObj obj, void *data)
  {
-   ScmCdb *cdb = SCM_CDB(cdb);
+   ScmCdb *cdb = SCM_CDB(obj);
    switch (cdb->status) {
    case OPEN_QUERY:
      cdb_free(&cdb->cdb); close(cdb_fileno(&cdb->cdb));