fade: cosmetic cleanups
[paraslash.git] / string.c
index 0a55ed20c299144aeaf048a3c98db5dafdae4978..9ad6bfb8edd7e616e61c16acec38f9a4d5bdb8e3 100644 (file)
--- a/string.c
+++ b/string.c
@@ -253,8 +253,11 @@ void chop(char *buf)
 __must_check __malloc char *para_tmpname(void)
 {
        struct timeval now;
+       unsigned int seed;
+
        gettimeofday(&now, NULL);
-       srand(now.tv_usec);
+       seed = now.tv_usec;
+       srand(seed);
        return make_message("%08i", rand());
 }