From: ARUNKUMAR KAYAMBU -X (akayambu - XORIANT CORPORATION at Cisco) Date: Tue, 26 Mar 2024 15:41:55 +0000 (+0000) Subject: Pull request #4260: xhash: fixed typo X-Git-Tag: 3.1.84.0~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62e3b0fe2f52c8c8441d2601dd86c459c4ffc29d;p=thirdparty%2Fsnort3.git Pull request #4260: xhash: fixed typo Merge in SNORT/snort3 from ~AKAYAMBU/snort3:xhash_typo_fix to master Squashed commit of the following: commit ef656c71459e6f6baeaa91e91a975b38f2f9ad34 Author: Arunkumar Kayambu Date: Mon Mar 25 15:55:57 2024 -0400 xhash: fixed typo --- diff --git a/src/hash/xhash.h b/src/hash/xhash.h index 6bcd1fb75..31c5d4f7e 100644 --- a/src/hash/xhash.h +++ b/src/hash/xhash.h @@ -60,7 +60,7 @@ public: void* get_user_data(); void* get_user_data(const void* key, uint8_t type = 0); void release(uint8_t type = 0); - int release_node(const void* key, u_int8_t type = 0); + int release_node(const void* key, uint8_t type = 0); int release_node(HashNode* node, uint8_t type = 0); void* get_mru_user_data(uint8_t type = 0); void* get_lru_user_data(uint8_t type = 0);