pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
825d6cb
)
Key.mod is uint, Client.[old]bw is int
author
Anselm R Garbe
<garbeam@gmail.com>
Thu, 22 May 2008 10:50:18 +0000
(11:50 +0100)
committer
Anselm R Garbe
<garbeam@gmail.com>
Thu, 22 May 2008 10:50:18 +0000
(11:50 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
0c9acbe
..
53f0c12
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-69,7
+69,7
@@
struct Client {
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
int minax, maxax, minay, maxay;
long flags;
-
u
int bw, oldbw;
+ int bw, oldbw;
Bool isbanned, isfixed, isfloating, isurgent;
uint tags;
Client *next;
@@
-94,7
+94,7
@@
typedef struct {
} DC; /* draw context */
typedef struct {
- u
long
mod;
+ u
int
mod;
KeySym keysym;
void (*func)(const void *arg);
const void *arg;