Overview
SHA1 Hash: | a84089319ca8147b750d64d9d0cde0099121df8b |
---|---|
Date: | 2007-10-11 01:20:45 |
User: | drh |
Comment: | Fix a C++-ism. |
Timelines: | ancestors | descendants | both | trunk |
Other Links: | files | ZIP archive | manifest |
Tags And Properties
- branch=trunk inherited from [a28c83647d]
- sym-trunk inherited from [a28c83647d]
Changes
[hide diffs]Modified src/timeline.c from [0cd823eb58] to [ca926d4172].
@@ -95,14 +95,14 @@ int *pFirstEvent, 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;" );