Fossil SCM
Remove unused local variable.
Commit
aa55cf3aa6d4c74c781c1c8d2f9b0807c3a2740c
Parent
cb52442608ce154…
1 file changed
+1
-1
+1
-1
| --- src/manifest.c | ||
| +++ src/manifest.c | ||
| @@ -1230,11 +1230,11 @@ | ||
| 1230 | 1230 | ** Look for a file in a manifest, taking the case-sensitive option |
| 1231 | 1231 | ** into account. If case-sensitive is off, then files in any case |
| 1232 | 1232 | ** will match. |
| 1233 | 1233 | */ |
| 1234 | 1234 | ManifestFile *manifest_file_find(Manifest *p, const char *zName){ |
| 1235 | - int i, n; | |
| 1235 | + int i; | |
| 1236 | 1236 | Manifest *pBase; |
| 1237 | 1237 | if( filenames_are_case_sensitive() ){ |
| 1238 | 1238 | return manifest_file_seek(p, zName); |
| 1239 | 1239 | } |
| 1240 | 1240 | for(i=0; i<p->nFile; i++){ |
| 1241 | 1241 |
| --- src/manifest.c | |
| +++ src/manifest.c | |
| @@ -1230,11 +1230,11 @@ | |
| 1230 | ** Look for a file in a manifest, taking the case-sensitive option |
| 1231 | ** into account. If case-sensitive is off, then files in any case |
| 1232 | ** will match. |
| 1233 | */ |
| 1234 | ManifestFile *manifest_file_find(Manifest *p, const char *zName){ |
| 1235 | int i, n; |
| 1236 | Manifest *pBase; |
| 1237 | if( filenames_are_case_sensitive() ){ |
| 1238 | return manifest_file_seek(p, zName); |
| 1239 | } |
| 1240 | for(i=0; i<p->nFile; i++){ |
| 1241 |
| --- src/manifest.c | |
| +++ src/manifest.c | |
| @@ -1230,11 +1230,11 @@ | |
| 1230 | ** Look for a file in a manifest, taking the case-sensitive option |
| 1231 | ** into account. If case-sensitive is off, then files in any case |
| 1232 | ** will match. |
| 1233 | */ |
| 1234 | ManifestFile *manifest_file_find(Manifest *p, const char *zName){ |
| 1235 | int i; |
| 1236 | Manifest *pBase; |
| 1237 | if( filenames_are_case_sensitive() ){ |
| 1238 | return manifest_file_seek(p, zName); |
| 1239 | } |
| 1240 | for(i=0; i<p->nFile; i++){ |
| 1241 |