Browse code

Fix typo in local variable name in time_stop

This didn't break functionality but it would use a global instead
of a local variable so nested calls to time_* might have issues.

Change-Id: If61ef07c4ce15f1a356975a0b0611fdf5e49109a

Rob Crittenden authored on 2016/05/27 06:55:14
Showing 1 changed files
... ...
@@ -2371,7 +2371,7 @@ function time_start {
2371 2371
 function time_stop {
2372 2372
     local name
2373 2373
     local end_time
2374
-    local elpased_time
2374
+    local elapsed_time
2375 2375
     local total
2376 2376
     local start_time
2377 2377