Fossil SCM
fixed type of JsonPageDef::runMode from char to int because it uses negative values and char is unsigned by ARM platforms.
Commit
8f6b78e7b20a9f64fb6d2488c809786cb4b7fb8a
Parent
c1c680eb289550f…
1 file changed
+1
-1
+1
-1
| --- src/json_detail.h | ||
| +++ src/json_detail.h | ||
| @@ -184,11 +184,11 @@ | ||
| 184 | 184 | ** |
| 185 | 185 | ** Now that we can simulate POST in CLI mode, the distinction |
| 186 | 186 | ** between them has disappeared in most (or all) cases, so 0 is |
| 187 | 187 | ** the standard value. |
| 188 | 188 | */ |
| 189 | - char runMode; | |
| 189 | + int runMode; | |
| 190 | 190 | } JsonPageDef; |
| 191 | 191 | |
| 192 | 192 | /* |
| 193 | 193 | ** Holds common keys used for various JSON API properties. |
| 194 | 194 | */ |
| 195 | 195 |
| --- src/json_detail.h | |
| +++ src/json_detail.h | |
| @@ -184,11 +184,11 @@ | |
| 184 | ** |
| 185 | ** Now that we can simulate POST in CLI mode, the distinction |
| 186 | ** between them has disappeared in most (or all) cases, so 0 is |
| 187 | ** the standard value. |
| 188 | */ |
| 189 | char runMode; |
| 190 | } JsonPageDef; |
| 191 | |
| 192 | /* |
| 193 | ** Holds common keys used for various JSON API properties. |
| 194 | */ |
| 195 |
| --- src/json_detail.h | |
| +++ src/json_detail.h | |
| @@ -184,11 +184,11 @@ | |
| 184 | ** |
| 185 | ** Now that we can simulate POST in CLI mode, the distinction |
| 186 | ** between them has disappeared in most (or all) cases, so 0 is |
| 187 | ** the standard value. |
| 188 | */ |
| 189 | int runMode; |
| 190 | } JsonPageDef; |
| 191 | |
| 192 | /* |
| 193 | ** Holds common keys used for various JSON API properties. |
| 194 | */ |
| 195 |