summaryrefslogtreecommitdiff
path: root/src/upb_text.c
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2010-01-02 15:30:51 -0800
committerJoshua Haberman <joshua@reverberate.org>2010-01-02 15:30:51 -0800
commitfa5710f1cad50ddd17605c73d4661acbf265a469 (patch)
tree807e25b1afc282e829cd28f4a778118138c4a5d6 /src/upb_text.c
parentece08710a64e09baf4bdcb71752ce20ff1d4a757 (diff)
upb_string* -> upb_strptr, to follow aliasing rules.
Diffstat (limited to 'src/upb_text.c')
-rw-r--r--src/upb_text.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/upb_text.c b/src/upb_text.c
index 17efa9f..225b344 100644
--- a/src/upb_text.c
+++ b/src/upb_text.c
@@ -49,7 +49,7 @@ static void print_indent(struct upb_text_printer *p, FILE *stream)
}
void upb_text_printfield(struct upb_text_printer *p,
- upb_string *name,
+ upb_strptr name,
upb_field_type_t valtype, union upb_value val,
FILE *stream)
{
@@ -63,7 +63,7 @@ void upb_text_printfield(struct upb_text_printer *p,
}
void upb_text_push(struct upb_text_printer *p,
- upb_string *submsg_type,
+ upb_strptr submsg_type,
FILE *stream)
{
print_indent(p, stream);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback