diff options
| author | Quentin Rameau <[email protected]> | 2021-05-21 00:16:17 +0200 |
|---|---|---|
| committer | Quentin Rameau <[email protected]> | 2021-05-21 00:16:17 +0200 |
| commit | 761ea9e4c6c4d8aba4a4d39da9c9b4db8ac471b1 (patch) | |
| tree | 0b5860edd4093b5dd60c11fb8527e7d202544a9c | |
| parent | Update LICENSE file (diff) | |
| download | surf-761ea9e4c6c4d8aba4a4d39da9c9b4db8ac471b1.tar.gz surf-761ea9e4c6c4d8aba4a4d39da9c9b4db8ac471b1.tar.bz2 surf-761ea9e4c6c4d8aba4a4d39da9c9b4db8ac471b1.zip | |
Fix togglestats array
| -rw-r--r-- | surf.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/surf.c b/surf.c index af0fa74..c25def7 100644 --- a/surf.c +++ b/surf.c @@ -240,7 +240,7 @@ static void clicknewwindow(Client *c, const Arg *a, WebKitHitTestResult *h); static void clickexternplayer(Client *c, const Arg *a, WebKitHitTestResult *h); static char winid[64]; -static char togglestats[12]; +static char togglestats[11]; static char pagestats[2]; static Atom atoms[AtomLast]; static Window embed; @@ -668,11 +668,10 @@ gettogglestats(Client *c) togglestats[3] = curconfig[DiskCache].val.i ? 'D' : 'd'; togglestats[4] = curconfig[LoadImages].val.i ? 'I' : 'i'; togglestats[5] = curconfig[JavaScript].val.i ? 'S' : 's'; - togglestats[7] = curconfig[Style].val.i ? 'M' : 'm'; - togglestats[8] = curconfig[FrameFlattening].val.i ? 'F' : 'f'; - togglestats[9] = curconfig[Certificate].val.i ? 'X' : 'x'; - togglestats[10] = curconfig[StrictTLS].val.i ? 'T' : 't'; - togglestats[11] = '\0'; + togglestats[6] = curconfig[Style].val.i ? 'M' : 'm'; + togglestats[7] = curconfig[FrameFlattening].val.i ? 'F' : 'f'; + togglestats[8] = curconfig[Certificate].val.i ? 'X' : 'x'; + togglestats[9] = curconfig[StrictTLS].val.i ? 'T' : 't'; } void |