You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Stein <gs...@gmail.com> on 2011/05/26 14:42:51 UTC

Re: svn commit: r1127889 - /subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c

On May 26, 2011 8:38 AM, <ju...@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.