Default stdev to 0.0, not -1.0

If we only have a single sample, then the deviation is by definition 0.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/stat.c b/stat.c
index 28d85c1..38f94be 100644
--- a/stat.c
+++ b/stat.c
@@ -82,7 +82,7 @@
 	if (n > 1.0)
 		*dev = sqrt(is->S / (n - 1.0));
 	else
-		*dev = -1.0;
+		*dev = 0;
 
 	return 1;
 }