diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-16 17:09:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-16 17:09:33 +0100 |
| commit | c96637d181be25d58fb6935236e22cb1d6d10b3f (patch) | |
| tree | f1171c441244ae924957651ac60ebc37bf100e1c /src | |
| parent | 5c6191a5a154e60ae8a1be8b09372be183c1a520 (diff) | |
Attempted 64-bit compile fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/kdm_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc index a7af7978c..ebecd234c 100644 --- a/src/wx/kdm_dialog.cc +++ b/src/wx/kdm_dialog.cc @@ -493,7 +493,7 @@ KDMDialog::write_to () const libdcp::KDM::Formulation KDMDialog::formulation () const { - return (libdcp::KDM::Formulation) reinterpret_cast<long int> (_type->GetClientData (_type->GetSelection())); + return (libdcp::KDM::Formulation) reinterpret_cast<intptr_t> (_type->GetClientData (_type->GetSelection())); } void |
