diff options
author | Stefano Karapetsas <[email protected]> | 2013-02-21 22:37:20 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-02-21 22:37:20 +0100 |
commit | 329e418f0d728458ad3956d4356dc4b18aff9797 (patch) | |
tree | b6fca4a17f95962d91e116242ca3548277944157 | |
parent | 11d66624eccc547a87e7e5ab2423d20894640b0f (diff) | |
download | marco-329e418f0d728458ad3956d4356dc4b18aff9797.tar.bz2 marco-329e418f0d728458ad3956d4356dc4b18aff9797.tar.xz |
Fix no-return-in-nonvoid-function
-rw-r--r-- | src/core/place.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/place.c b/src/core/place.c index b837adb7..7d1082b7 100644 --- a/src/core/place.c +++ b/src/core/place.c @@ -487,6 +487,7 @@ center_tile_rect_in_area (MetaRectangle *rect, rect->y = work_area->y + fluff; } +static void center_rect_in_area (MetaRectangle *rect, MetaRectangle *work_area) { |