Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Bug 678332-gio/gconverterinputstream.c: Fix build
Browse files Browse the repository at this point in the history
Apparently the previous change to this file broke GCC builds, so fix that.
  • Loading branch information
fanc999-1 committed Jun 19, 2012
1 parent 8758544 commit 98f201b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gio/gconverterinputstream.c
Expand Up @@ -415,7 +415,7 @@ read_internal (GInputStream *stream,
buffer_read (&priv->converted_buffer, buffer, available);

total_bytes_read = available;
(char *) buffer += available;
buffer = (char *) buffer + available;
count -= available;

/* If there is no data to convert, and no pre-converted data,
Expand Down

0 comments on commit 98f201b

Please sign in to comment.