diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-09-29 12:57:55 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2024-09-29 12:57:55 -0700 |
commit | 180e9c126a97be9b8a1cb5626c48d7d9ab166923 (patch) | |
tree | 1113716d885eb61172c2705b04a1ace746d6e6c7 | |
parent | 92f8b67ebacf96c4e7bf19873e1e4a21cf949938 (diff) |
vwm: s/delay/delay_us/
More clarification of delay/timeout units in naming.
-rw-r--r-- | src/vwm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -335,13 +335,13 @@ int main(int argc, char *argv[]) while (!vwm->done) { do { - int delay; + int delay_us; - if (vwm_charts_update(vwm->charts, &delay)) + if (vwm_charts_update(vwm->charts, &delay_us)) vwm_composite_repaint_needed(vwm); if (!XPending(VWM_XDISPLAY(vwm))) { - if (poll(&pfd, 1, delay) == 0) + if (poll(&pfd, 1, delay_us) == 0) break; } |