From 839f87d1e1b1df01dec8bd7215df5e2c04ea84d7 Mon Sep 17 00:00:00 2001 From: Themaister Date: Thu, 17 Mar 2011 01:01:31 +0100 Subject: [PATCH] oops --- nall/string/convert.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nall/string/convert.hpp b/nall/string/convert.hpp index 42b066f..826aecf 100644 --- a/nall/string/convert.hpp +++ b/nall/string/convert.hpp @@ -121,7 +121,7 @@ inline uintmax_t binary(const char *str) { } inline double fp(const char *str) { - strtod(str, NULL); + return strtod(str, NULL); } }