Fossil SCM
Fix compiler warning on MSVC.
Commit
783a2a1b73082ca10dd910bf32c9c94d753e260d
Parent
052d80dff23fd93…
1 file changed
+1
-1
+1
-1
| --- src/report.c | ||
| +++ src/report.c | ||
| @@ -925,11 +925,11 @@ | ||
| 925 | 925 | if( xCallback(pArg, nCol, azVals, azCols) ){ |
| 926 | 926 | break; |
| 927 | 927 | } |
| 928 | 928 | } |
| 929 | 929 | rc = sqlite3_finalize(pStmt); |
| 930 | - fossil_free(azVals); | |
| 930 | + fossil_free((void *)azVals); | |
| 931 | 931 | return rc; |
| 932 | 932 | } |
| 933 | 933 | |
| 934 | 934 | /* |
| 935 | 935 | ** Output Javascript code that will enables sorting of the table with |
| 936 | 936 |
| --- src/report.c | |
| +++ src/report.c | |
| @@ -925,11 +925,11 @@ | |
| 925 | if( xCallback(pArg, nCol, azVals, azCols) ){ |
| 926 | break; |
| 927 | } |
| 928 | } |
| 929 | rc = sqlite3_finalize(pStmt); |
| 930 | fossil_free(azVals); |
| 931 | return rc; |
| 932 | } |
| 933 | |
| 934 | /* |
| 935 | ** Output Javascript code that will enables sorting of the table with |
| 936 |
| --- src/report.c | |
| +++ src/report.c | |
| @@ -925,11 +925,11 @@ | |
| 925 | if( xCallback(pArg, nCol, azVals, azCols) ){ |
| 926 | break; |
| 927 | } |
| 928 | } |
| 929 | rc = sqlite3_finalize(pStmt); |
| 930 | fossil_free((void *)azVals); |
| 931 | return rc; |
| 932 | } |
| 933 | |
| 934 | /* |
| 935 | ** Output Javascript code that will enables sorting of the table with |
| 936 |