diff options
| author | Richard M. Stallman | 1994-11-28 21:03:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-11-28 21:03:41 +0000 |
| commit | 2d1db47cfd059cc3f577e4a81dd38c3d4e371f71 (patch) | |
| tree | 1faaaa9a9ec0f3e66c5eb98bbbf032b57136b7f5 /lib-src/profile.c | |
| parent | e4c97a67e7ef26c39f33c5227e2aba0e07784f3d (diff) | |
| download | emacs-2d1db47cfd059cc3f577e4a81dd38c3d4e371f71.tar.gz emacs-2d1db47cfd059cc3f577e4a81dd38c3d4e371f71.zip | |
(get_time): Fix up whitespace.
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 d9585f3af87..d0c4b93a0d5 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c | |||
| @@ -57,7 +57,7 @@ get_time () | |||
| 57 | exit (1); /* call reset_watch first ! */ | 57 | exit (1); /* call reset_watch first ! */ |
| 58 | EMACS_GET_TIME (TV2); | 58 | EMACS_GET_TIME (TV2); |
| 59 | EMACS_SUB_TIME (TV2, TV2, TV1); | 59 | EMACS_SUB_TIME (TV2, TV2, TV1); |
| 60 | sprintf (time_string, "%lu.%06lu", EMACS_SECS(TV2), EMACS_USECS(TV2)); | 60 | sprintf (time_string, "%lu.%06lu", EMACS_SECS (TV2), EMACS_USECS (TV2)); |
| 61 | return time_string; | 61 | return time_string; |
| 62 | } | 62 | } |
| 63 | 63 | ||