diff options
author | drh <> | 2023-06-29 17:48:32 +0000 |
---|---|---|
committer | drh <> | 2023-06-29 17:48:32 +0000 |
commit | 500ca334bd1d4f25aaa3e4ac58bdc8076dff345a (patch) | |
tree | 0fc7375cab3a0fabe4ad29a563cad1c3d64707c2 /ext/misc/decimal.c | |
parent | 0b1a1e8c37fb3544a92fcd5ed01a92da38f044c1 (diff) | |
download | sqlite-500ca334bd1d4f25aaa3e4ac58bdc8076dff345a.tar.gz sqlite-500ca334bd1d4f25aaa3e4ac58bdc8076dff345a.zip |
Fix harmless compiler warnings about unused function arguments.
FossilOrigin-Name: 24927c1377314a10177da4a57191593440aa97fd0c5949fdf25a22df1d947600
Diffstat (limited to 'ext/misc/decimal.c')
-rw-r--r-- | ext/misc/decimal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/misc/decimal.c b/ext/misc/decimal.c index 8c325d2bf..865f3ce24 100644 --- a/ext/misc/decimal.c +++ b/ext/misc/decimal.c @@ -663,6 +663,7 @@ static void decimalSciFunc( sqlite3_value **argv ){ Decimal *pA = decimal_new(context, argv[0], 0, 0); + UNUSED_PARAMETER(argc); decimal_result_sci(context, pA); decimal_free(pA); } |