OSDN Git Service

Fix "C4551: function call missing argument list" warning
authorGreyMerlin <greymerlin7@gmail.com>
Mon, 4 Jan 2021 16:59:28 +0000 (08:59 -0800)
committerGreyMerlin <greymerlin7@gmail.com>
Mon, 4 Jan 2021 16:59:28 +0000 (08:59 -0800)
Externals/poco/XML/src/xmlparse.cpp

index ace8ede..06bec07 100644 (file)
@@ -6393,7 +6393,7 @@ static unsigned long FASTCALL
 hash(XML_Parser parser, KEY s) {
   struct siphash state;
   struct sipkey key;
-  (void)sip24_valid;
+  (void)sip24_valid();
   copy_salt_to_sipkey(parser, &key);
   sip24_init(&state, &key);
   sip24_update(&state, s, keylen(s) * sizeof(XML_Char));