Fossil SCM
Remove unnecessary variable initializations
Commit
c203ba902c747210f010ceebe39e1fff979d82c306fc5a96872a103e053c0a68
Parent
8017bad639df6a0…
1 file changed
+3
-3
+3
-3
| --- src/diff.c | ||
| +++ src/diff.c | ||
| @@ -2354,13 +2354,13 @@ | ||
| 2354 | 2354 | */ |
| 2355 | 2355 | void annotation_page(void){ |
| 2356 | 2356 | int i; |
| 2357 | 2357 | int iLimit; /* Depth limit */ |
| 2358 | 2358 | u64 annFlags = DIFF_STRIP_EOLCR; |
| 2359 | - int showLog = 0; /* True to display the log */ | |
| 2360 | - int fileVers; /* Show file version instead of check-in versions */ | |
| 2361 | - int ignoreWs = 0; /* Ignore whitespace */ | |
| 2359 | + int showLog; /* True to display the log */ | |
| 2360 | + int fileVers; /* Show file version instead of check-in versions */ | |
| 2361 | + int ignoreWs; /* Ignore whitespace */ | |
| 2362 | 2362 | const char *zFilename; /* Name of file to annotate */ |
| 2363 | 2363 | const char *zRevision; /* Name of check-in from which to start annotation */ |
| 2364 | 2364 | const char *zCI; /* The check-in containing zFilename */ |
| 2365 | 2365 | Annotator ann; |
| 2366 | 2366 | HQuery url; |
| 2367 | 2367 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -2354,13 +2354,13 @@ | |
| 2354 | */ |
| 2355 | void annotation_page(void){ |
| 2356 | int i; |
| 2357 | int iLimit; /* Depth limit */ |
| 2358 | u64 annFlags = DIFF_STRIP_EOLCR; |
| 2359 | int showLog = 0; /* True to display the log */ |
| 2360 | int fileVers; /* Show file version instead of check-in versions */ |
| 2361 | int ignoreWs = 0; /* Ignore whitespace */ |
| 2362 | const char *zFilename; /* Name of file to annotate */ |
| 2363 | const char *zRevision; /* Name of check-in from which to start annotation */ |
| 2364 | const char *zCI; /* The check-in containing zFilename */ |
| 2365 | Annotator ann; |
| 2366 | HQuery url; |
| 2367 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -2354,13 +2354,13 @@ | |
| 2354 | */ |
| 2355 | void annotation_page(void){ |
| 2356 | int i; |
| 2357 | int iLimit; /* Depth limit */ |
| 2358 | u64 annFlags = DIFF_STRIP_EOLCR; |
| 2359 | int showLog; /* True to display the log */ |
| 2360 | int fileVers; /* Show file version instead of check-in versions */ |
| 2361 | int ignoreWs; /* Ignore whitespace */ |
| 2362 | const char *zFilename; /* Name of file to annotate */ |
| 2363 | const char *zRevision; /* Name of check-in from which to start annotation */ |
| 2364 | const char *zCI; /* The check-in containing zFilename */ |
| 2365 | Annotator ann; |
| 2366 | HQuery url; |
| 2367 |