aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2017-11-30 21:42:44 +0000
committerHarry Jeffery <harry@exec64.co.uk>2017-11-30 21:42:44 +0000
commit59c3ecd9c2af75b6404e2b4e52369c4b125f401e (patch)
treeace6243b8369e07aa3a79f02299ca966ec865c3e
parente8ec492616157a4067e43da19dd8a90e67566730 (diff)
downloadimv-59c3ecd9c2af75b6404e2b4e52369c4b125f401e.tar.gz
Fix comment alignment
-rw-r--r--src/imv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imv.c b/src/imv.c
index 1365fa9..4f8c552 100644
--- a/src/imv.c
+++ b/src/imv.c
@@ -613,7 +613,7 @@ int imv_run(struct imv *imv)
unsigned int timeout = 1000; /* sleep up to a second */
/* if we need to display the next frame of an animation soon we should
- * limit our sleep until the next frame is due */
+ * limit our sleep until the next frame is due */
const double next_frame_in = imv_loader_time_left(imv->loader);
if(next_frame_in > 0.0) {
timeout = (unsigned int)(next_frame_in * 1000.0);