diff options
| author | Richard M. Stallman | 1995-04-15 18:34:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-04-15 18:34:01 +0000 |
| commit | e363091e2ca7dafea60c618efd59465693986a1d (patch) | |
| tree | 5ee9991d9501bd4bd4946057bed89f92bfdda259 | |
| parent | ccf589a69c4a4d0a9aa0635c4d361182c5887e15 (diff) | |
| download | emacs-e363091e2ca7dafea60c618efd59465693986a1d.tar.gz emacs-e363091e2ca7dafea60c618efd59465693986a1d.zip | |
(xaw_pop_instance): Make x, y, w, h unsigned.
| -rw-r--r-- | lwlib/lwlib-Xaw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lwlib/lwlib-Xaw.c b/lwlib/lwlib-Xaw.c index 9a659bb1a00..42376608462 100644 --- a/lwlib/lwlib-Xaw.c +++ b/lwlib/lwlib-Xaw.c | |||
| @@ -220,7 +220,7 @@ xaw_pop_instance (instance, up) | |||
| 220 | life easier? | 220 | life easier? |
| 221 | */ | 221 | */ |
| 222 | { | 222 | { |
| 223 | int x, y, w, h; | 223 | unsigned int x, y, w, h; |
| 224 | Widget topmost = instance->parent; | 224 | Widget topmost = instance->parent; |
| 225 | Arg args[2]; | 225 | Arg args[2]; |
| 226 | 226 | ||