wmmon: remove wmgeneral.c typecasting warning
wmmon: Added -f to rm The -f argument don't stop the make process if the file don't exists.
This commit is contained in:
parent
7e6c32e926
commit
996f7c41ad
|
@ -318,7 +318,7 @@ void openXwindow(int argc, char *argv[], char *pixmap_bytes[], char *pixmask_bit
|
||||||
&mysizehints.width, &mysizehints.height, &dummy);
|
&mysizehints.width, &mysizehints.height, &dummy);
|
||||||
if (geometry)
|
if (geometry)
|
||||||
XParseGeometry(geometry, &mysizehints.x, &mysizehints.y,
|
XParseGeometry(geometry, &mysizehints.x, &mysizehints.y,
|
||||||
&mysizehints.width, &mysizehints.height);
|
(unsigned int *) &mysizehints.width, (unsigned int *) &mysizehints.height);
|
||||||
|
|
||||||
mysizehints.width = 64;
|
mysizehints.width = 64;
|
||||||
mysizehints.height = 64;
|
mysizehints.height = 64;
|
||||||
|
|
|
@ -14,6 +14,6 @@ wmmon: $(OBJS)
|
||||||
|
|
||||||
clean::
|
clean::
|
||||||
for i in $(OBJS) ; do \
|
for i in $(OBJS) ; do \
|
||||||
rm $$i;\
|
rm -f $$i;\
|
||||||
done
|
done
|
||||||
rm wmmon
|
rm -f wmmon
|
||||||
|
|
Loading…
Reference in a new issue