diff options
author | Tor Andersson <tor@ghostscript.com> | 2009-11-29 04:40:31 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2009-11-29 04:40:31 +0100 |
commit | 2c080e248a47cb94d2069f6523c314d039f70919 (patch) | |
tree | 46180621f350edfb63ac578a04125dcd9db31f9d /fitz/node_path.c | |
parent | af27ce7576c323665bb9986fbbab63acb6c81c17 (diff) | |
download | mupdf-2c080e248a47cb94d2069f6523c314d039f70919.tar.xz |
Fix up indentation.
Diffstat (limited to 'fitz/node_path.c')
-rw-r--r-- | fitz/node_path.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fitz/node_path.c b/fitz/node_path.c index 843184d0..1ef469eb 100644 --- a/fitz/node_path.c +++ b/fitz/node_path.c @@ -107,9 +107,9 @@ fz_lineto(fz_pathnode *path, float x, float y) fz_error fz_curveto(fz_pathnode *path, - float x1, float y1, - float x2, float y2, - float x3, float y3) + float x1, float y1, + float x2, float y2, + float x3, float y3) { if (path->len == 0) return fz_throw("no current point"); |