diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-05-05 20:27:53 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-05-09 11:41:47 -0700 |
commit | c2b668e6fff11c52f2a3f0dc3f4d1fc2c5bcf3e6 (patch) | |
tree | 3078a7a3acb65ebfdbb47eaef59044a7c6da5bca /hw/xquartz/pbproxy | |
parent | 1e816065e5ec3b9394dc1fa5815457a664e15fd9 (diff) |
XQuartz: pbproxy standalone: added missing variable declarations.
(cherry picked from commit 2d947d17a3ef5fb8cef959bff0eb08b8bb5b6548)
Diffstat (limited to 'hw/xquartz/pbproxy')
-rw-r--r-- | hw/xquartz/pbproxy/app-main.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/xquartz/pbproxy/app-main.m b/hw/xquartz/pbproxy/app-main.m index cb0fa5744..d4b43c6ae 100644 --- a/hw/xquartz/pbproxy/app-main.m +++ b/hw/xquartz/pbproxy/app-main.m @@ -50,6 +50,9 @@ static void signal_handler (int sig) { } int main (int argc, const char *argv[]) { + const char *s; + int i; + #ifdef DEBUG printf("pid: %u\n", getpid()); #endif |