Skip to content
Snippets Groups Projects
Commit 4cda3e84 authored by Izzard, Robert Dr (Maths & Physics)'s avatar Izzard, Robert Dr (Maths & Physics)
Browse files

Backport from izzard-discs: Fix bug in binary_c_string_macros.h where [0]...

Backport from izzard-discs: Fix bug in binary_c_string_macros.h where [0] should have been [1]. This prevented 0 from being detected as "false" in Boolean arguments.
parent 7b888098
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@
( \
(S)[0] == '\0' || \
( \
((S)[0] == '0' && (S)[0] == '\0') \
((S)[0] == '0' && (S)[1] == '\0') \
|| \
( \
((S)[0] == 'F' || \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment