summaryrefslogtreecommitdiff
path: root/upb/bindings/lua
diff options
context:
space:
mode:
Diffstat (limited to 'upb/bindings/lua')
-rw-r--r--upb/bindings/lua/def.c4
-rw-r--r--upb/bindings/lua/upb/pb.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/upb/bindings/lua/def.c b/upb/bindings/lua/def.c
index c38b6d1..e16d426 100644
--- a/upb/bindings/lua/def.c
+++ b/upb/bindings/lua/def.c
@@ -639,8 +639,8 @@ static int lupb_symtab_add(lua_State *L) {
lupb_arena_new(L);
arena = lupb_arena_check(L, -1);
- set = google_protobuf_FileDescriptorSet_parsenew(
- upb_stringview_make(str, len), arena);
+ set = google_protobuf_FileDescriptorSet_parsenew(upb_strview_make(str, len),
+ arena);
if (!set) {
luaL_argerror(L, 2, "failed to parse descriptor");
diff --git a/upb/bindings/lua/upb/pb.c b/upb/bindings/lua/upb/pb.c
index 2edefe0..e60dcde 100644
--- a/upb/bindings/lua/upb/pb.c
+++ b/upb/bindings/lua/upb/pb.c
@@ -16,7 +16,7 @@ static int lupb_pb_decode(lua_State *L) {
const upb_msglayout *layout;
upb_msg *msg = lupb_msg_checkmsg2(L, 1, &layout);
const char *pb = lua_tolstring(L, 2, &len);
- upb_stringview buf = upb_stringview_make(pb, len);
+ upb_strview buf = upb_strview_make(pb, len);
upb_decode(buf, msg, layout);
/* TODO(haberman): check for error. */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback