aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorryuukk <44361234+ryuukk@users.noreply.github.com>2023-07-11 03:51:28 +0200
committerGitHub <noreply@github.com>2023-07-11 03:51:28 +0200
commite1fae5b9027ad6e79b949639ed403593e1591356 (patch)
tree54bf6836ddd8d11daf46b16404d44f0efbfa41fe
parent20e5e95ff85cd0d590fa152aec3d8942c0d665e2 (diff)
Fix attribute
-rw-r--r--core/sys/windows/ws2_32.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sys/windows/ws2_32.odin b/core/sys/windows/ws2_32.odin
index 6e5c37345..7b9cf1b89 100644
--- a/core/sys/windows/ws2_32.odin
+++ b/core/sys/windows/ws2_32.odin
@@ -211,9 +211,9 @@ foreign ws2_32 {
// [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-ntohs)
ntohs :: proc(netshort: c_ushort) -> c_ushort ---
// [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-htonl)
- @(deprecated("Use endian specific integers instead, https://odin-lang.org/docs/overview/#basic-types"))
+ @(deprecated="Use endian specific integers instead, https://odin-lang.org/docs/overview/#basic-types")
htonl :: proc(hostlong: c_ulong) -> c_ulong ---
// [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-htons)
- @(deprecated("Use endian specific integers instead, https://odin-lang.org/docs/overview/#basic-types"))
+ @(deprecated="Use endian specific integers instead, https://odin-lang.org/docs/overview/#basic-types")
htons :: proc(hostshort: c_ushort) -> c_ushort ---
}