Skip to content
Snippets Groups Projects
Commit d75cc8fb authored by Yorhel's avatar Yorhel
Browse files

Replace 'suseconds_t' with 'long'

suseconds_t isn't always defined on some systems, but all possible
values are guaranteed to fit into a long, so use that.
parent 97fefbaf
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ char errmsg[128]; /* error message, when err=1 */
struct dir *root; /* root directory struct we're calculating */
struct dir *orig; /* original directory, when recalculating */
dev_t curdev; /* current device we're calculating on */
suseconds_t lastupdate; /* time of the last screen update */
long lastupdate; /* time of the last screen update */
int anpos; /* position of the animation string */
......
......@@ -41,7 +41,7 @@
int delete_delay = 100;
suseconds_t lastupdate;
long lastupdate;
struct dir *root, *nextsel;
char noconfirm = 0,
ignoreerr = 0,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment