diff options
author | Pavel Shlyak <shlyak-pavel2011@ya.ru> | 2020-08-25 18:19:28 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-10-08 09:24:51 +0200 |
commit | b589565650f7e8ef127327d46f59f9a2995edfda (patch) | |
tree | 41493fe7e822717d8362da5398c1022e44986649 | |
parent | 1870dbea58c1d86a64bc1931b3b41f0e4cf0b060 (diff) |
Fix typo
I'm not sure if this fixes anything, but the code seems suspicious
-rw-r--r-- | gtk/zbargtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/zbargtk.c b/gtk/zbargtk.c index 670502b..a701fe7 100644 --- a/gtk/zbargtk.c +++ b/gtk/zbargtk.c @@ -721,7 +721,7 @@ static void zbar_gtk_init (ZBarGtk *self) g_assert(zbar->window); zbar->req_width = zbar->video_width = DEFAULT_WIDTH; - zbar->req_height = zbar->video_width = DEFAULT_HEIGHT; + zbar->req_height = zbar->video_height = DEFAULT_HEIGHT; /* use a queue to signalize about the need to handle decoding and video */ zbar->queue = g_async_queue_new(); |