From db7e3770ad69bbedbf5bfc0747993b22ceec42f2 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Fri, 21 Sep 2012 12:01:16 +0200 Subject: [PATCH] fix indenting to tabs --- pdf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdf.c b/pdf.c index 780b33dd7..124f66bd6 100644 --- a/pdf.c +++ b/pdf.c @@ -492,9 +492,9 @@ static int getUsedBBox(lua_State *L) { return luaL_error(L, "cannot calculate bbox for page"); } - lua_pushnumber(L, ((double)result.x0)/100); + lua_pushnumber(L, ((double)result.x0)/100); lua_pushnumber(L, ((double)result.y0)/100); - lua_pushnumber(L, ((double)result.x1)/100); + lua_pushnumber(L, ((double)result.x1)/100); lua_pushnumber(L, ((double)result.y1)/100); return 4;