1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(get_time): Fix up whitespace.

This commit is contained in:
Richard M. Stallman 1994-11-28 21:03:41 +00:00
parent e4c97a67e7
commit 2d1db47cfd

View File

@ -57,7 +57,7 @@ get_time ()
exit (1); /* call reset_watch first ! */
EMACS_GET_TIME (TV2);
EMACS_SUB_TIME (TV2, TV2, TV1);
sprintf (time_string, "%lu.%06lu", EMACS_SECS(TV2), EMACS_USECS(TV2));
sprintf (time_string, "%lu.%06lu", EMACS_SECS (TV2), EMACS_USECS (TV2));
return time_string;
}