aboutsummaryrefslogtreecommitdiffstats
path: root/libart_lgpl/art_misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'libart_lgpl/art_misc.h')
-rw-r--r--libart_lgpl/art_misc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libart_lgpl/art_misc.h b/libart_lgpl/art_misc.h
index de91432c5a..a124413e70 100644
--- a/libart_lgpl/art_misc.h
+++ b/libart_lgpl/art_misc.h
@@ -29,9 +29,9 @@
#ifdef __cplusplus
extern "C" {
#endif
-gpointer art_alloc(gsize size);
-void art_free(gpointer ptr);
-gpointer art_realloc(gpointer ptr, gsize size);
+gpointer art_alloc (gsize size);
+void art_free (gpointer ptr);
+gpointer art_realloc (gpointer ptr, gsize size);
#ifdef __cplusplus
}
#endif /* __cplusplus */
@@ -47,7 +47,7 @@ gpointer art_realloc(gpointer ptr, gsize size);
be variables. They can also be pstruct->el lvalues. */
#define art_expand(p, type, max) \
do { if (max) { p = art_renew (p, type, max <<= 1); } \
- else { max = 1; p = art_new(type, 1); } } while (0)
+ else { max = 1; p = art_new (type, 1); } } while (0)
typedef gint art_boolean;
#define ART_FALSE 0