From 45aa6b0d6f0c078137c067cea755e7e978d3c402 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 12 Mar 2019 22:03:14 +0100 Subject: [PATCH] libazbox/video.cpp: fix wrong brackets Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/1b0bc23265ac8212c9d141a70cd2bd9a4e88f14c Author: vanhofen Date: 2019-03-12 (Tue, 12 Mar 2019) Origin message was: ------------------ - libazbox/video.cpp: fix wrong brackets ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libazbox/video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libazbox/video.cpp b/libazbox/video.cpp index 02d692a..9f9f9cf 100644 --- a/libazbox/video.cpp +++ b/libazbox/video.cpp @@ -160,7 +160,7 @@ int cVideo::setAspectRatio(int aspect, int mode) int n; int mo = (mode < 0||mode > 3) ? 4 : mode; - hal_debug("%s: a:%d m:%d %s\n", __func__, aspect, mode, m[(mo]); + hal_debug("%s: a:%d m:%d %s\n", __func__, aspect, mode, m[(mo)]); if (aspect > 3 || aspect == 0) hal_info("%s: invalid aspect: %d\n", __func__, aspect);