diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-04-12 01:19:48 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-04-12 01:19:48 +0200 |
commit | c59c76cab0f4e654e1f6705f5be02f925970e5ca (patch) | |
tree | 65ede00e72c4514145b19ca582acca39709cca82 | |
parent | cc93c1b2866ba150556e20ae1797c23409afa9a3 (diff) |
analyze: fix typo
-rwxr-xr-x | src/systemd-analyze | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemd-analyze b/src/systemd-analyze index 6f03d13bd0..4f3e478e99 100755 --- a/src/systemd-analyze +++ b/src/systemd-analyze @@ -89,7 +89,7 @@ if len(sys.argv) <= 1 or sys.argv[1] == 'time': finish_time/1000) else: print "Startup finished in %lums (kernel) + %lums (userspace) = %lums" % ( \ - startup_time/1000, \ + start_time/1000, \ (finish_time - start_time)/1000, \ finish_time/1000) |