From 4e7d1d4b6ab29ea30b0120608aaf73f86f4cdc14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 9 Nov 2005 20:05:58 +0000 Subject: [PATCH] Oops: 1) fixed warning, 2) added missing bracket (in PrintToStream() output). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14808 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/interface/Font.cpp b/src/kits/interface/Font.cpp index ba84d2b7ca..abcdf4ab70 100644 --- a/src/kits/interface/Font.cpp +++ b/src/kits/interface/Font.cpp @@ -1370,7 +1370,7 @@ BFont::PrintToStream() const font_style style; GetFamilyAndStyle(&family, &style); - printf("BFont { %s (%d), %s (%d) 0x%x %f/%f %fpt (%f %f %f), %ld\n", family, + printf("BFont { %s (%d), %s (%d) 0x%x %f/%f %fpt (%f %f %f), %d }\n", family, fFamilyID, style, fStyleID, fFace, fShear, fRotation, fSize, fHeight.ascent, fHeight.descent, fHeight.leading, fEncoding); }