From f0c2d88b6f8cac97a8e4c9736a22706d56584281 Mon Sep 17 00:00:00 2001 From: Gon Solo Date: Fri, 23 Jan 2026 17:48:18 +0100 Subject: [PATCH] Fix K%R in DBbound.c. --- database/DBbound.c | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/database/DBbound.c b/database/DBbound.c index 12cd9001..351b8d7f 100644 --- a/database/DBbound.c +++ b/database/DBbound.c @@ -53,10 +53,7 @@ typedef struct dbcellboundstruct */ int -DBBoundCellPlane(def, extended, rect) - CellDef *def; - Rect *extended; - Rect *rect; +DBBoundCellPlane(CellDef *def, Rect *extended, Rect *rect) { TreeFilter filter; DBCellBoundStruct cbs; @@ -79,9 +76,7 @@ DBBoundCellPlane(def, extended, rect) } int -dbCellBoundFunc(use, fp) - CellUse *use; - TreeFilter *fp; +dbCellBoundFunc(CellUse *use, TreeFilter *fp) { DBCellBoundStruct *cbs; @@ -124,9 +119,7 @@ dbCellBoundFunc(use, fp) */ bool -DBBoundPlane(plane, rect) - Plane *plane; - Rect *rect; +DBBoundPlane(Plane *plane, Rect *rect) { Tile *left, *right, *top, *bottom, *tp; @@ -205,9 +198,7 @@ DBBoundPlane(plane, rect) */ bool -DBBoundPlaneVert(plane, rect) - Plane *plane; - Rect *rect; +DBBoundPlaneVert(Plane *plane, Rect *rect) { Tile *left, *right, *top, *bottom, *tp;