mirror of
https://github.com/flatpak/flatpak.git
synced 2026-04-08 00:49:17 -04:00
Fix stray = in generated code
This commit is contained in:
@@ -483,7 +483,7 @@ class ArrayType(Type):
|
||||
if self.element_type.is_basic(): # non-fixed basic == Stringlike
|
||||
print (" return ((const char *)v.base) + start;")
|
||||
else:
|
||||
print(" return (%s) = { ((const char *)v.base) + start, end - start };" % (self.element_type.typename))
|
||||
print(" return (%s) { ((const char *)v.base) + start, end - start };" % (self.element_type.typename))
|
||||
print("}")
|
||||
|
||||
print("static inline void")
|
||||
|
||||
Reference in New Issue
Block a user