chiark / gitweb /
analyze: fix typo
authorLennart Poettering <lennart@poettering.net>
Mon, 11 Apr 2011 23:19:48 +0000 (01:19 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 11 Apr 2011 23:19:48 +0000 (01:19 +0200)
src/systemd-analyze

index 6f03d13bd07ec0cc2b25fb05bfc856f2dc8bd328..4f3e478e998289fad01b88e104e920c00528ee33 100755 (executable)
@@ -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)