Diff
Not logged in

Differences From:

File src/timeline.c part of check-in [50a58adb76] - Many changes and bug fixes in the wiki processing. Moving toward a workable wiki system. The "Home" menu option now takes you to the wiki page whose name is the same as the Project Name. There is a "wcontent" page, but no link to it yet. Many other changes. by drh on 2007-10-10 21:15:17. [view]

To:

File src/timeline.c part of check-in [a84089319c] - Fix a C++-ism. by drh on 2007-10-11 01:20:45. [view]

@@ -96,12 +96,12 @@
   int *pLastEvent,
   int (*xCallback)(int, Blob*),
   Blob *pArg
  ){
-  char zPrevDate[20];
   int cnt = 0;
-  zPrevDate[0] = 0;
   Blob comment;
+  char zPrevDate[20];
+  zPrevDate[0] = 0;
 
   db_multi_exec(
      "CREATE TEMP TABLE IF NOT EXISTS seen(rid INTEGER PRIMARY KEY);"
      "DELETE FROM seen;"