diff options
| author | Po Lu | 2022-05-07 06:19:53 +0000 |
|---|---|---|
| committer | Po Lu | 2022-05-07 06:19:53 +0000 |
| commit | 293a97d61e1977440f96b7fc91f281a06250ea72 (patch) | |
| tree | f41fc4c66eecbd599d855e06b30e7e958b896045 /src | |
| parent | a775528d17ce4cb070c36af1023a2dfecad24569 (diff) | |
| download | emacs-293a97d61e1977440f96b7fc91f281a06250ea72.tar.gz emacs-293a97d61e1977440f96b7fc91f281a06250ea72.zip | |
Fix 32-bit Haiku build
* src/haiku_support.cc (MessageReceived): Fix type of
`old_what'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/haiku_support.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/haiku_support.cc b/src/haiku_support.cc index 105da3969ff..5dfb25d6dd7 100644 --- a/src/haiku_support.cc +++ b/src/haiku_support.cc | |||
| @@ -2989,7 +2989,7 @@ class EmacsFilePanelCallbackLooper : public BLooper | |||
| 2989 | BEntry entry; | 2989 | BEntry entry; |
| 2990 | BPath path; | 2990 | BPath path; |
| 2991 | entry_ref ref; | 2991 | entry_ref ref; |
| 2992 | int old_what; | 2992 | int32 old_what; |
| 2993 | 2993 | ||
| 2994 | if (msg->what == FILE_PANEL_SELECTION | 2994 | if (msg->what == FILE_PANEL_SELECTION |
| 2995 | || ((msg->FindInt32 ("old_what", &old_what) == B_OK | 2995 | || ((msg->FindInt32 ("old_what", &old_what) == B_OK |