summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-02-20 21:35:14 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-02-20 21:35:14 +0000
commitb5ea344b9525605155ed61ebb3f2e5da6c4197f2 (patch)
treeefb46827fe0fa05c568baf05bdf2fba006b0dd89 /fluid
parent2f82fd066321cde3e225fc87a9469849215413eb (diff)
Fixed format once more in Fluid unique ID.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7118 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/Fl_Function_Type.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx
index bcaaf875b..6a56df85c 100644
--- a/fluid/Fl_Function_Type.cxx
+++ b/fluid/Fl_Function_Type.cxx
@@ -739,7 +739,7 @@ Fl_Type *Fl_Data_Type::make() {
o->public_ = 1;
o->static_ = 1;
o->filename_ = 0;
- char buf[32]; sprintf(buf, "data_%016x", (unsigned long int)o);
+ char buf[32]; sprintf(buf, "data_%016lx", (unsigned long int)o);
o->name(buf);
o->add(p);
o->factory = this;