diff options
author | Sebastian Reichel <sre@ring0.de> | 2012-08-08 04:10:18 +0200 |
---|---|---|
committer | Sebastian Reichel <sre@ring0.de> | 2012-08-08 04:10:18 +0200 |
commit | a6d444fc08eabcf81b3d6e64ff2272039298b798 (patch) | |
tree | fb393d15a8d5c171b5a5b9ee733f027938551a1d /db.vala | |
parent | b33ca54964b823da8764710dbee141a548240baf (diff) | |
download | serial-barcode-scanner-a6d444fc08eabcf81b3d6e64ff2272039298b798.tar.bz2 |
lock serial device
Diffstat (limited to 'db.vala')
-rw-r--r-- | db.vala | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ public class Database { public Database(string file) { int rc; - rc = Sqlite.Database.open (file, out db); + rc = Sqlite.Database.open(file, out db); if(rc != Sqlite.OK) { error("could not open database!"); } |