summaryrefslogtreecommitdiff
path: root/plugins/dexbnf/shorty.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-04 10:27:41 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-04 10:27:41 (GMT)
commita0463dfa8fe232d01ea925668f393d7507fa787b (patch)
treecc2bb210cf377a96567db1cff9ea7952fc66303f /plugins/dexbnf/shorty.c
parent1ade82e135d4e815db5b33c9ebd67632b74e5e1d (diff)
Renamed the function providing next character from input buffers.
Diffstat (limited to 'plugins/dexbnf/shorty.c')
-rw-r--r--plugins/dexbnf/shorty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/dexbnf/shorty.c b/plugins/dexbnf/shorty.c
index b8bb158..434aa3b 100644
--- a/plugins/dexbnf/shorty.c
+++ b/plugins/dexbnf/shorty.c
@@ -78,9 +78,9 @@ GBinRoutine *dsd_shorty_descriptor(input_buffer *buffer)
/* Arguments */
- for (ahead = text_input_buffer_next_char(buffer);
+ for (ahead = get_input_buffer_next_char(buffer);
ahead != '\0';
- ahead = text_input_buffer_next_char(buffer))
+ ahead = get_input_buffer_next_char(buffer))
{
type = dsd_shorty_field_type(buffer, ahead);
@@ -132,7 +132,7 @@ static GDataType *dsd_shorty_return_type(input_buffer *buffer)
*
*/
- ahead = text_input_buffer_next_char(buffer);
+ ahead = get_input_buffer_next_char(buffer);
if (ahead == 'V')
result = g_basic_type_new(BTP_VOID);