Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jralls committed Apr 10, 2018
1 parent b1915a0 commit 868489b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/dbi/gnc-backend-dbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -3327,7 +3327,7 @@ conn_test_dbi_library( dbi_conn conn )
memset( doublestr, 0, sizeof(doublestr));

result = dbi_conn_query (conn, "DROP TABLE IF EXISTS numtest;");
result = dbi_conn_query (con, "CREATE TEMPORARY TABLE numtest "
result = dbi_conn_query (conn, "CREATE TEMPORARY TABLE numtest "
"( test_int BIGINT, test_unsigned BIGINT,"
" test_double FLOAT8 )");
if ( result == NULL )
Expand Down

0 comments on commit 868489b

Please sign in to comment.