diff options
Diffstat (limited to 'src/os_qnx.c')
-rw-r--r-- | src/os_qnx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_qnx.c b/src/os_qnx.c index 8091599ec..79b7ec0f6 100644 --- a/src/os_qnx.c +++ b/src/os_qnx.c @@ -120,7 +120,7 @@ clip_mch_set_selection(VimClipboard *cbd) type = clip_convert_selection(&str, &len, cbd); if (type >= 0) { - text_clip = lalloc(len + 1, TRUE); /* Normal text */ + text_clip = alloc(len + 1); // Normal text if (text_clip && vim_clip) { |