summaryrefslogtreecommitdiff
path: root/src/cairo-path.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-10-30 10:58:16 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2007-10-30 10:58:16 +0000
commite57df319633f8ebd0249096d76c9058f31f9835b (patch)
tree0cb840d6d3ade6258e4b886ea1f40262fe7ff6ed /src/cairo-path.c
parent6fdb7f129c8154e288ee40765fa63ffaeebaf8fd (diff)
downloadcairo-e57df319633f8ebd0249096d76c9058f31f9835b.tar.gz
[cairo-path] Make _cairo_path_nil static.
_cairo_path_nil is only used within cairo-path.c, so there is no reason to expose it to the rest of the libary.
Diffstat (limited to 'src/cairo-path.c')
-rw-r--r--src/cairo-path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-path.c b/src/cairo-path.c
index 90b726dc5..9c18b8df9 100644
--- a/src/cairo-path.c
+++ b/src/cairo-path.c
@@ -39,7 +39,7 @@
#include "cairo-path-private.h"
#include "cairo-path-fixed-private.h"
-const cairo_path_t _cairo_path_nil = { CAIRO_STATUS_NO_MEMORY, NULL, 0 };
+static const cairo_path_t _cairo_path_nil = { CAIRO_STATUS_NO_MEMORY, NULL, 0 };
/* Closure for path interpretation. */
typedef struct cairo_path_count {