Check-in [e0131b1a66]
Not logged in
Overview

SHA1 Hash:e0131b1a661b6b2818fe36653034aef01ea44b1d
Date: 2009-09-19 15:20:59
User: drh
Comment:Fix a (harmless) compiler warning in wikiformat.c.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/wikiformat.c from [b167238efb] to [0e593fe2f2].

@@ -961,11 +961,11 @@
       blob_appendf(p->pOut, "<a href=\"%h\">", zTarget);
     }else{
       zTerm = "";
     }
   }else if( is_valid_uuid(zTarget) ){
-    int isClosed;
+    int isClosed = 0;
     if( is_ticket(zTarget, &isClosed) ){
       /* Special display processing for tickets.  Display the hyperlink
       ** as crossed out if the ticket is closed.
       */
       if( isClosed ){