summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorIan MacArthur <imacarthur@gmail.com>2014-10-15 20:51:39 +0000
committerIan MacArthur <imacarthur@gmail.com>2014-10-15 20:51:39 +0000
commitf344e4a459481260b39cccf4a20994e7e309f147 (patch)
tree095b47d645f0543e7b0ad4f66cde3e24164dd321 /fluid
parentde1d03cd52b5b127ed6cc43d9ddb197b65b21094 (diff)
Adjust fluid/file.cxx so that it builds again on OSX.
I don't think this change will prevent the prior "fix" workaround that Albrecht made from working on cygwin... Probably! git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10381 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/file.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/file.cxx b/fluid/file.cxx
index b24cae58f..128c8e12a 100644
--- a/fluid/file.cxx
+++ b/fluid/file.cxx
@@ -379,7 +379,7 @@ static void read_children(Fl_Type *p, int paste) {
if (!strcmp(c,"version")) {
c = read_word();
read_version = strtod(c,0);
- if (read_version<=0 || read_version>double(FL_VERSION+0.00001d))
+ if (read_version<=0 || read_version>double(FL_VERSION+0.00001))
read_error("unknown version '%s'",c);
continue;
}