From 4698cb53dc2ed6cb7dad084753af024f3059d839 Mon Sep 17 00:00:00 2001 From: dolorous Date: Mon, 26 Jan 2009 20:50:09 +0000 Subject: Add still more minor cosmetic fixes. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8796 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/stuff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/stuff.h') diff --git a/crawl-ref/source/stuff.h b/crawl-ref/source/stuff.h index 3e65492b17..74e90b86e7 100644 --- a/crawl-ref/source/stuff.h +++ b/crawl-ref/source/stuff.h @@ -206,7 +206,7 @@ inline bool testbits(unsigned long flags, unsigned long test) template inline Z sgn(Z x) { - return (x < 0? -1 : (x > 0? 1 : 0)); + return (x < 0 ? -1 : (x > 0 ? 1 : 0)); } bool is_trap_square(dungeon_feature_type grid); -- cgit v1.2.3-54-g00ecf