Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Unified Diff: plot.c

Issue 6893111: Enhancements to ktop (Closed) Base URL: ssh://gitrw.chromium.org:9222/ktop.git@master
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « plot.h ('k') | reduce.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: plot.c
diff --git a/plot.c b/plot.c
index 962657292fc9736fbecc877cee2c2a332def39ee..4a1b27ed9b6b516b6fa37c7e640288fe0774caa9 100644
--- a/plot.c
+++ b/plot.c
@@ -100,7 +100,7 @@ vector_s vinit(int n, double f(double))
point_s *p = v.p;
point_s *end;
double x;
-
+
for (x = 0, end = &v.p[n]; p < end; p++, x++) {
p->x = x;
p->y = f(x);
« no previous file with comments | « plot.h ('k') | reduce.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698