From ee1ed1ccb87effa403dc91603d452d4c98ed716f Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Wed, 22 Jul 2009 19:49:53 -0700 Subject: Compiler finally works (except string arrays). Untested. Holy crap that was a lot of work. --- src/upb_text.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/upb_text.h') diff --git a/src/upb_text.h b/src/upb_text.h index b1dbf59..f35f8d8 100644 --- a/src/upb_text.h +++ b/src/upb_text.h @@ -22,9 +22,9 @@ INLINE void upb_text_printer_init(struct upb_text_printer *p, bool single_line) p->indent_depth = 0; p->single_line = single_line; } -void upb_text_printval(upb_field_type_t type, union upb_value_ptr p, FILE *file); +void upb_text_printval(upb_field_type_t type, union upb_value p, FILE *file); void upb_text_printfield(struct upb_text_printer *p, struct upb_string name, - upb_field_type_t valtype, union upb_value_ptr val, + upb_field_type_t valtype, union upb_value val, FILE *stream); void upb_text_push(struct upb_text_printer *p, struct upb_string submsg_type, FILE *stream); -- cgit v1.2.3