diff options
| author | Richard M. Stallman | 1997-08-13 15:34:05 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-13 15:34:05 +0000 |
| commit | 9ae177785fa18ed04f9e5ffd7faee42d6b8b7f92 (patch) | |
| tree | 8762b3cd066c9790f6c21b87d478be16887510b9 /lib-src/profile.c | |
| parent | 0c08e6df25ab1689eceeb87dd9a46e8c69be2a18 (diff) | |
| download | emacs-9ae177785fa18ed04f9e5ffd7faee42d6b8b7f92.tar.gz emacs-9ae177785fa18ed04f9e5ffd7faee42d6b8b7f92.zip | |
(get_time): Cast arg to fprintf.
Diffstat (limited to 'lib-src/profile.c')
| -rw-r--r-- | lib-src/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/profile.c b/lib-src/profile.c index b0c713e69dd..2b27ce06119 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c | |||
| @@ -58,7 +58,7 @@ get_time () | |||
| 58 | exit (1); /* call reset_watch first ! */ | 58 | exit (1); /* call reset_watch first ! */ |
| 59 | EMACS_GET_TIME (TV2); | 59 | EMACS_GET_TIME (TV2); |
| 60 | EMACS_SUB_TIME (TV2, TV2, TV1); | 60 | EMACS_SUB_TIME (TV2, TV2, TV1); |
| 61 | sprintf (time_string, "%lu.%06lu", EMACS_SECS (TV2), EMACS_USECS (TV2)); | 61 | sprintf (time_string, "%lu.%06lu", (unsigned long)EMACS_SECS (TV2), (unsigned long)EMACS_USECS (TV2)); |
| 62 | return time_string; | 62 | return time_string; |
| 63 | } | 63 | } |
| 64 | 64 | ||