On May 26, 2011 8:38 AM, <julianf...@apache.org> wrote: >... > @@ -416,6 +409,13 @@ check_db_rows(svn_test__sandbox_t *b, > svn_sqlite__db_t *sdb; > int i; > svn_sqlite__stmt_t *stmt; > + const char *const statements[] = { > + "SELECT op_depth, presence, local_relpath, revision, repos_path " > + "FROM nodes " > + "WHERE local_relpath = ?1 OR local_relpath LIKE ?2", > + NULL };
That should be static. Probably the same for other functions, too.