From 424609f82d15a3aee5987155af094fcae4bc2516 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 13 Jun 2013 01:07:56 +0200 Subject: [PATCH] Renamed yx type to more precisely reflect its data structure. --- windows.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/windows.c b/windows.c index f6bc54e..2aa8499 100644 --- a/windows.c +++ b/windows.c @@ -4,15 +4,15 @@ #include #include "windows.h" -struct yx { +struct yx_uint16 { uint16_t y; uint16_t x; }; struct Corners { - struct yx tl; - struct yx tr; - struct yx bl; - struct yx br; }; + struct yx_uint16 tl; + struct yx_uint16 tr; + struct yx_uint16 bl; + struct yx_uint16 br; }; static void refit_pad (struct WinMeta *); static void place_window (struct WinMeta *, struct Win *); -- 2.30.2