diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2014-08-20 13:27:09 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2014-08-20 13:27:09 +0200 |
commit | 0afbc91140481a2f6886b6df7768a837fdbd352c (patch) | |
tree | e36e8f0bcfd1ceaf79dd9f070e346e2087ed4636 | |
parent | 61de1fe7e510fdd425686c478439209f6f7a4b73 (diff) | |
download | mupdf-0afbc91140481a2f6886b6df7768a837fdbd352c.tar.xz |
Fix uninitialized variable.
-rw-r--r-- | platform/x11/x11_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/x11/x11_main.c b/platform/x11/x11_main.c index 908850eb..b2413777 100644 --- a/platform/x11/x11_main.c +++ b/platform/x11/x11_main.c @@ -812,7 +812,8 @@ int main(int argc, char **argv) struct timeval now; struct timeval *timeout; struct timeval tmo_advance_delay; - int tint, tint_r, tint_g, tint_b; + int tint = 0; + int tint_r, tint_g, tint_b; ctx = fz_new_context(NULL, NULL, FZ_STORE_DEFAULT); if (!ctx) |