You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/11/24 11:33:45 UTC

[incubator-nuttx-apps] 01/03: graphics/nxwidgets/src/cimage.cxx: Fix a syslog format

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit 2667fb265ba61804cc78009d0cf890189a4e0dec
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Tue Nov 24 12:30:15 2020 +0900

    graphics/nxwidgets/src/cimage.cxx: Fix a syslog format
---
 graphics/nxwidgets/src/cimage.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/graphics/nxwidgets/src/cimage.cxx b/graphics/nxwidgets/src/cimage.cxx
index 2a53a6b..b470784 100644
--- a/graphics/nxwidgets/src/cimage.cxx
+++ b/graphics/nxwidgets/src/cimage.cxx
@@ -268,7 +268,7 @@ void CImage::drawContents(CGraphicsPort *port, bool selected)
 
           if (!m_bitmap->getRun(0, srcRow, nLeftPixels, &buffer[m_origin.x]))
             {
-              ginfo("IBitmap::getRun failed at image row\n", srcRow);
+              ginfo("IBitmap::getRun failed at image row %d\n", srcRow);
               delete buffer;
               return;
             }