summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-12-26 07:59:08 +0000
committermidipix <writeonce@midipix.org>2016-12-26 03:47:42 -0500
commit03898bc2419140ade7f3c89207626c002724379c (patch)
tree32e5cd4963d668425c0e271b0e51b7e02952fcbc /src
parent01246c2200bcc62a66c733e6f6797824d7b208b3 (diff)
downloadptycon-03898bc2419140ade7f3c89207626c002724379c.tar.bz2
ptycon-03898bc2419140ade7f3c89207626c002724379c.tar.xz
struct ptyc_vkcode: fix const definitions.
Diffstat (limited to 'src')
-rw-r--r--src/internal/ptycon_bridge_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/internal/ptycon_bridge_impl.h b/src/internal/ptycon_bridge_impl.h
index 49c1cad..621a5c6 100644
--- a/src/internal/ptycon_bridge_impl.h
+++ b/src/internal/ptycon_bridge_impl.h
@@ -32,8 +32,8 @@ struct ptyc_term_input {
};
struct ptyc_vkcode {
- const unsigned char const * mbstr;
- uint16_t mblen;
+ const unsigned char * const mbstr;
+ const uint16_t mblen;
};
struct ptyc_term_ctx;