summary refs log tree commit diff stats
path: root/plugins/fishlim/tests/tests.c
diff options
context:
space:
mode:
authorAdrian <git@nexadn.de>2022-08-21 20:46:21 +0200
committerPatrick <tingping@tingping.se>2022-08-26 12:40:15 -0500
commit20c50fd7ef6e027c0e84a5dac48b95e229f36134 (patch)
tree65b14c5f8284a7d79b50d23544d781f70bd814d2 /plugins/fishlim/tests/tests.c
parentd7c6c424e8c078d3e5a28c830ff3f6f62da8b39a (diff)
notification_plugin_deinit: Set function signature to int(void *)
Previously the function signature was inconsistent throughout
src/fe-gtk/plugin-notification.{h,c}: One file had the signature
int(void), while the other had int(void *). Since this type mismatch
might lead to problems (especially with LTO) and the (possibly provided)
function argument isn't used in the function's definition, this commit
sets int(void *) as function signature for both the declaration and
definition of the function.

Fixes: https://github.com/hexchat/hexchat/issues/2726
Diffstat (limited to 'plugins/fishlim/tests/tests.c')
0 files changed, 0 insertions, 0 deletions
>93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212