Skip to content

Commit 79c054f

Browse files
committed
Update copyright year
1 parent f8348de commit 79c054f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sqlite3-core.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (C) 2016 by Syohei YOSHIDA
2+
Copyright (C) 2017 by Syohei YOSHIDA
33
44
This program is free software; you can redistribute it and/or modify
55
it under the terms of the GNU General Public License as published by
@@ -330,9 +330,8 @@ static emacs_value
330330
el_sqlite3_exec(emacs_env *env, sqlite3 *sdb, const char *query)
331331
{
332332
int ret = sqlite3_exec(sdb, query, NULL, NULL, NULL);
333-
if (ret != SQLITE_OK) {
333+
if (ret != SQLITE_OK)
334334
return env->intern(env, "nil");
335-
}
336335

337336
return env->intern(env, "t");
338337
}

0 commit comments

Comments
 (0)