forked from pool/systemd
32 lines
953 B
Diff
32 lines
953 B
Diff
From a213b7e977221ca96bbc1b19a5a879c912ba2488 Mon Sep 17 00:00:00 2001
|
|
From: Jeffrey Clark <h0tw1r3@gmail.com>
|
|
Date: Wed, 23 Apr 2014 22:37:43 +0200
|
|
Subject: [PATCH] analyze: fix plot with bad y size
|
|
|
|
systemd-analyze plot > test.svg produces output with all y and height
|
|
element attributes equal to zero. This of course causes the resulting
|
|
svg to appear blank (zero height). Bug does not affect x86. Looks like
|
|
a compiler optimization may be the culprit.
|
|
|
|
https://github.com/archlinuxarm/PKGBUILDs/issues/815
|
|
---
|
|
src/analyze/analyze.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git src/analyze/analyze.c src/analyze/analyze.c
|
|
index ba236d9..ebaa9d0 100644
|
|
--- src/analyze/analyze.c
|
|
+++ src/analyze/analyze.c
|
|
@@ -43,7 +43,7 @@
|
|
#include "pager.h"
|
|
|
|
#define SCALE_X (0.1 / 1000.0) /* pixels per us */
|
|
-#define SCALE_Y 20.0
|
|
+#define SCALE_Y (20.0)
|
|
|
|
#define compare(a, b) (((a) > (b))? 1 : (((b) > (a))? -1 : 0))
|
|
|
|
--
|
|
1.7.9.2
|
|
|