mirror of
https://github.com/fltk/fltk.git
synced 2026-06-05 08:06:35 +08:00
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
This commit is contained in:
@@ -739,7 +739,7 @@ Fl_Type *Fl_Data_Type::make() {
|
|||||||
o->public_ = 1;
|
o->public_ = 1;
|
||||||
o->static_ = 1;
|
o->static_ = 1;
|
||||||
o->filename_ = 0;
|
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->name(buf);
|
||||||
o->add(p);
|
o->add(p);
|
||||||
o->factory = this;
|
o->factory = this;
|
||||||
|
|||||||
Reference in New Issue
Block a user