Browse Source

Some priority fixes from working branch.

scossu 6 days ago
parent
commit
876e6702fb
3 changed files with 4 additions and 3 deletions
  1. 2 1
      README.md
  2. 1 1
      src/store.c
  3. 1 1
      test/test_codec_nt.c

+ 2 - 1
README.md

@@ -62,7 +62,8 @@ of features as a standalone library:
 - ✓ Serialization and de-serialization to/from N-Triples and N-Quads
 - ✓ Serialization and de-serialization to/from Turtle and TriG
 - ✓ Compile-time configuration of max graph size (efficiency vs. capacity)
-- ⚒ Python bindings
+- ⚒ Lua bindings
+- ⛌ Python bindings (moved to separate project and temporarily on hold)
 - ⚒ Basic command line utilities
 - ⚒ Store interface for custom back end implementations
 

+ 1 - 1
src/store.c

@@ -68,4 +68,4 @@ LSUP_store_commit (LSUP_Store *store, void *txn)
 
 void
 LSUP_store_abort (LSUP_Store *store, void *txn)
-{ return store->sif->txn_abort_fn (txn); }
+{ store->sif->txn_abort_fn (txn); }

+ 1 - 1
test/test_codec_nt.c

@@ -256,7 +256,7 @@ int
 test_decode_nt_bad_graph()
 {
     log_info ("testing illegal NT document.");
-    FILE *input = fmemopen ((void *)bad_nt_doc, strlen (start_nt_doc), "r");
+    FILE *input = fmemopen ((void *)bad_nt_doc, strlen (bad_nt_doc), "r");
 
     LSUP_Graph *gr;
     size_t ct;