diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-12-03 08:54:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-03 08:54:50 -0500 |
commit | 65f9508fc642a19200bfcad91864c21ac0a8d524 (patch) | |
tree | 2f99a579911f744184b8bd5464d53f7f4a793cd4 /sway/desktop | |
parent | ed88b1119712860df18492ba9c2871063c5d47ea (diff) | |
parent | 9220225f1df384085b0fe80089b06d5ba1f290de (diff) |
Merge pull request #1490 from acrisci/bug/unused-timepsec-func
remove unused timepsec func
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/output.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 6b9822c1..7eb48bdf 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -13,10 +13,6 @@ #include "sway/server.h" #include "sway/view.h" -static inline int64_t timespec_to_msec(const struct timespec *a) { - return (int64_t)a->tv_sec * 1000 + a->tv_nsec / 1000000; -} - static void output_frame_view(swayc_t *view, void *data) { struct sway_output *output = data; struct wlr_output *wlr_output = output->wlr_output; |