diff options
author | Dan Williams <dcbw@redhat.com> | 2016-02-10 15:30:26 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2016-02-10 15:30:26 -0600 |
commit | fea234dd1ea6f8d558b32d93e127a5bd73e5ae04 (patch) | |
tree | 74249d2589f810ea8f52e7435e62df1e6a5184bd /build-aux | |
parent | 6f988368fdac492fa4289ae1c633c84d7abc39c6 (diff) | |
download | external_libqmi-fea234dd1ea6f8d558b32d93e127a5bd73e5ae04.zip external_libqmi-fea234dd1ea6f8d558b32d93e127a5bd73e5ae04.tar.gz external_libqmi-fea234dd1ea6f8d558b32d93e127a5bd73e5ae04.tar.bz2 |
qmi-codegen: fix too-small transaction id in internal message code
Found by John.
https://bugs.freedesktop.org/show_bug.cgi?id=94083
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/qmi-codegen/Message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/qmi-codegen/Message.py b/build-aux/qmi-codegen/Message.py index 7060006..aae9561 100644 --- a/build-aux/qmi-codegen/Message.py +++ b/build-aux/qmi-codegen/Message.py @@ -94,7 +94,7 @@ class Message: '\n' 'static QmiMessage *\n' '__${underscore}_request_create (\n' - ' guint8 transaction_id,\n' + ' guint16 transaction_id,\n' ' guint8 cid,\n' ' %s,\n' ' GError **error)\n' |