Diff
Not logged in

Differences From:

File src/wikiformat.c part of check-in [f394d84560] - Update SQLite to the latest build from CVS. Add in the FTS3 extension, though it is not yet being used. Additional work toward tickets. by drh on 2007-11-25 16:13:52. [view]

To:

File src/wikiformat.c part of check-in [371dd6574c] - Fix the revert command so that it works from subdirectories. Other minor comment and help-text changes. by drh on 2007-12-04 01:26:21. [view]

@@ -775,9 +775,8 @@
 ** return true.
 */
 static int is_valid_uuid(const char *z){
   int n = strlen(z);
-  int rid;
   if( n<4 || n>UUID_SIZE ) return 0;
   if( !validate16(z, n) ) return 0;
   return 1;
 }