summaryrefslogtreecommitdiff
path: root/libyasm/inttree.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2007-04-22 03:32:46 +0000
committerPeter Johnson <peter@tortall.net>2007-04-22 03:32:46 +0000
commit00473ca98171eb19615109f5a8512993da43a77a (patch)
treeff659c3a00f05562d7210683c8756303c7d02187 /libyasm/inttree.h
parent4238a7c5ce3b8853ecd1d9cf50eaa354f1038e7d (diff)
downloadyasm-00473ca98171eb19615109f5a8512993da43a77a.tar.gz
Bite the bullet and convert tabs to spaces. Previously yasm's source has
been using a mix of tabs and 4 spaces to indent; this looks horrible if tab size is ever not 8. While I debated converting to tab-only indentation that would have been a far higher impact to the source. svn path=/trunk/yasm/; revision=1825
Diffstat (limited to 'libyasm/inttree.h')
-rw-r--r--libyasm/inttree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libyasm/inttree.h b/libyasm/inttree.h
index 2b754984..972f5713 100644
--- a/libyasm/inttree.h
+++ b/libyasm/inttree.h
@@ -49,11 +49,11 @@ IntervalTree *IT_create(void);
void IT_destroy(IntervalTree *);
void IT_print(const IntervalTree *);
void *IT_delete_node(IntervalTree *, IntervalTreeNode *, long *low,
- long *high);
+ long *high);
IntervalTreeNode *IT_insert(IntervalTree *, long low, long high, void *data);
IntervalTreeNode *IT_get_predecessor(const IntervalTree *, IntervalTreeNode *);
IntervalTreeNode *IT_get_successor(const IntervalTree *, IntervalTreeNode *);
void IT_enumerate(IntervalTree *, long low, long high, void *cbd,
- void (*callback) (IntervalTreeNode *node, void *cbd));
+ void (*callback) (IntervalTreeNode *node, void *cbd));
#endif