Commit 9a177b64 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

snmpapi: Constify a variable.

parent 5fc54b54
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(snmpapi); WINE_DEFAULT_DEBUG_CHANNEL(snmpapi);
static INT asn_any_copy(AsnAny *dst, AsnAny *src) static INT asn_any_copy(AsnAny *dst, const AsnAny *src)
{ {
memset(dst, 0, sizeof(AsnAny)); memset(dst, 0, sizeof(AsnAny));
switch (src->asnType) switch (src->asnType)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment