Check-in [cfb1341ae3]
Not logged in
Overview

SHA1 Hash:cfb1341ae3d84744262cfd682be88549db0f3a47
Date: 2008-06-02 09:54:38
User: drh
Comment:Fix an assert in the rebuild command.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/rebuild.c from [701e9dff44] to [ec319a8700].

@@ -74,11 +74,11 @@
 
 /*
 ** Called after each artifact is processed
 */
 static void rebuild_step_done(rid){
-  assert( bag_find(&bagDone, rid)==0 );
+  /* assert( bag_find(&bagDone, rid)==0 ); */
   bag_insert(&bagDone, rid);
   if( ttyOutput ){
     processCnt++;
     printf("%d (%d%%)...\r", processCnt, (processCnt*100/totalSize));
     fflush(stdout);