Volatile casting

This commit is contained in:
Anthony Hu
2026-03-24 14:39:39 -04:00
parent b2f1c5864d
commit 812e2b6bde
+1 -1
View File
@@ -681,7 +681,7 @@
return 1;
}
else {
*(char * volatile *)expected_ptr = *(char **)c;
*(char * volatile *)expected_ptr = *(char * volatile *)c;
return 0;
}
}