| author | |
| committer | |
| log | ee9e63bc66096854cbc431fd4f0f190454fe93bd |
| tree | 86de9ff43f6c06010810b2fc3b2414a7af8012d3 |
| parent | 8ac20b7e0ae57e4f93931dc0de5b08c2cd92a66a |
1 files changed, 1 insertions(+), 1 deletions(-)
src/lib.zig+1-1| ... | ... | @@ -117,6 +117,6 @@ pub fn getMulti(name: string) ?[]const string { |
| 117 | 117 | |
| 118 | 118 | pub fn getBool(name: string, default: bool) !bool { |
| 119 | 119 | const x = getSingle(name) orelse return default; |
| 120 | const y = try std.fmt.parseUnsigned(u1, x, 2); | |
| 120 | const y = try extras.parseDigits(u1, x, 2); | |
| 121 | 121 | return y > 0; |
| 122 | 122 | } |