diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2017-11-30 21:42:44 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2017-11-30 21:42:44 +0000 |
commit | 59c3ecd9c2af75b6404e2b4e52369c4b125f401e (patch) | |
tree | ace6243b8369e07aa3a79f02299ca966ec865c3e | |
parent | e8ec492616157a4067e43da19dd8a90e67566730 (diff) | |
download | imv-59c3ecd9c2af75b6404e2b4e52369c4b125f401e.tar.gz |
Fix comment alignment
-rw-r--r-- | src/imv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |