Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54e1aacb authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Stop using deprecated (and removed in C23) ATOMIC_VAR_INIT().

Change-Id: I608532fc80bc768aab04c55675656157e7949835
parent efe22769
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -117,7 +117,7 @@ enum uapi_version {
    UAPI_MODERN,
    UAPI_LEGACY
};
static atomic_int g_uapi_version = ATOMIC_VAR_INIT(UAPI_UNKNOWN);
static atomic_int g_uapi_version = UAPI_UNKNOWN;

// ---------------------------------------------------------------------------