diff options
| author | yuri <yuri> | 2010-01-21 19:59:24 +0000 |
|---|---|---|
| committer | yuri <yuri> | 2010-01-21 19:59:24 +0000 |
| commit | ff29502d04f3becf5816705fa9b4437382084a47 (patch) | |
| tree | 804b543eda4e6611aa6855fc11641ee5422ad5d5 /src | |
| parent | a078c71b21d44fe1b7f05598327c689c02ed4796 (diff) | |
fix x86_64 linux build
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7020 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Preferences.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Preferences.cxx b/src/Fl_Preferences.cxx index e54110647..8864604a6 100644 --- a/src/Fl_Preferences.cxx +++ b/src/Fl_Preferences.cxx @@ -165,7 +165,7 @@ const char *Fl_Preferences::newUUID() b[5] = (unsigned char)(r>>8); b[6] = (unsigned char)(r>>16); b[7] = (unsigned char)(r>>24); - unsigned int a = (unsigned int)&t; // four more bytes + unsigned long a = (unsigned long)&t; // four more bytes b[8] = (unsigned char)a; b[9] = (unsigned char)(a>>8); b[10] = (unsigned char)(a>>16); |
