X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=tile.c;fp=tile.c;h=386832d66663e626f23206d0a4d19ce78b888c40;hb=e8792d95a12c85f9e660e192cd2c6260a01a3c5e;hp=e1c68f82ced42cd0355ae85ddd5dbb367e3a653b;hpb=feec92df8449f14836b8681f4e56f2afeea4faf6;p=dwm.git diff --git a/tile.c b/tile.c index e1c68f8..386832d 100644 --- a/tile.c +++ b/tile.c @@ -16,7 +16,9 @@ addtomwfact(const char *arg) { return; /* arg handling, manipulate mwfact */ - if(arg && (1 == sscanf(arg, "%lf", &delta))) { + if(arg == NULL) + mwfact = MWFACT; + else if(1 == sscanf(arg, "%lf", &delta)) { if(delta + mwfact > 0.1 && delta + mwfact < 0.9) mwfact += delta; }