# File lib/dbus/marshall.rb, line 274
    def append_string(str)
      align(4)
      @packet += [str.length].pack("L") + str + "\0"
    end