From b41cdcb350c3950ab4d8d8b67ce3a7083bd1682c Mon Sep 17 00:00:00 2001 From: Janus Date: Tue, 21 Apr 2015 12:51:41 +0000 Subject: [PATCH] ShowImage: reformat lines over 80 chars. * Last commit of the day, I need a vacation! --- src/apps/showimage/ShowImageWindow.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/apps/showimage/ShowImageWindow.cpp b/src/apps/showimage/ShowImageWindow.cpp index a769fc09ef..68dd2f443d 100644 --- a/src/apps/showimage/ShowImageWindow.cpp +++ b/src/apps/showimage/ShowImageWindow.cpp @@ -1534,12 +1534,14 @@ ShowImageWindow::_SaveWidthAndHeight() const char* kHeightAttrName = "Media:Height"; int32 widthAttr; - ssize_t attrSize = node.ReadAttr(kWidthAttrName, B_INT32_TYPE, 0, &widthAttr, sizeof(widthAttr)); + ssize_t attrSize = node.ReadAttr(kWidthAttrName, B_INT32_TYPE, 0, + &widthAttr, sizeof(widthAttr)); if (attrSize <= 0 || widthAttr != width) node.WriteAttr(kWidthAttrName, B_INT32_TYPE, 0, &width, sizeof(width)); int32 heightAttr; - attrSize = node.ReadAttr(kHeightAttrName, B_INT32_TYPE, 0, &heightAttr, sizeof(heightAttr)); + attrSize = node.ReadAttr(kHeightAttrName, B_INT32_TYPE, 0, + &heightAttr, sizeof(heightAttr)); if (attrSize <= 0 || heightAttr != height) node.WriteAttr(kHeightAttrName, B_INT32_TYPE, 0, &height, sizeof(height)); }