Xinqi Bao's Git
projects
/
dwm.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
b439892
)
small renamings of two static functions
author
Anselm R.Garbe <
[email protected]
>
Mon, 21 Aug 2006 05:33:18 +0000
(07:33 +0200)
committer
Anselm R.Garbe <
[email protected]
>
Mon, 21 Aug 2006 05:33:18 +0000
(07:33 +0200)
main.c
diff
|
blob
|
history
util.c
diff
|
blob
|
history
diff --git
a/main.c
b/main.c
index
1bc4068
..
4aad990
100644
(file)
--- a/
main.c
+++ b/
main.c
@@
-63,7
+63,7
@@
scan()
}
static int
}
static int
-win
_property
(Window w, Atom a, Atom t, long l, unsigned char **prop)
+win
prop
(Window w, Atom a, Atom t, long l, unsigned char **prop)
{
int status, format;
unsigned long res, extra;
{
int status, format;
unsigned long res, extra;
@@
-116,7
+116,7
@@
getproto(Window w)
long res;
Atom *protocols;
long res;
Atom *protocols;
- res = win
_property
(w, wmatom[WMProtocols], XA_ATOM, 20L,
+ res = win
prop
(w, wmatom[WMProtocols], XA_ATOM, 20L,
((unsigned char **)&protocols));
if(res <= 0) {
return protos;
((unsigned char **)&protocols));
if(res <= 0) {
return protos;
diff --git
a/util.c
b/util.c
index
2414b39
..
99d7beb
100644
(file)
--- a/
util.c
+++ b/
util.c
@@
-12,7
+12,7
@@
/* static */
static void
/* static */
static void
-bad
_
malloc(unsigned int size)
+badmalloc(unsigned int size)
{
eprint("fatal: could not malloc() %u bytes\n", size);
}
{
eprint("fatal: could not malloc() %u bytes\n", size);
}
@@
-25,7
+25,7
@@
emallocz(unsigned int size)
void *res = calloc(1, size);
if(!res)
void *res = calloc(1, size);
if(!res)
- bad
_
malloc(size);
+ badmalloc(size);
return res;
}
return res;
}
@@
-45,7
+45,7
@@
erealloc(void *ptr, unsigned int size)
{
void *res = realloc(ptr, size);
if(!res)
{
void *res = realloc(ptr, size);
if(!res)
- bad
_
malloc(size);
+ badmalloc(size);
return res;
}
return res;
}