diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-10-03 19:50:21 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-10-03 19:50:21 -0400 |
commit | 7b30cf831aa9ae3e90ca99f016f11d6f6833ad2f (patch) | |
tree | 43dc7639dfb5639f973cf112d31d17248c64f637 /src | |
parent | 3c22f5997c7e11f371c606520daff279d9b613e4 (diff) |
Bug 597165 - void return in vte.c
Diffstat (limited to 'src')
-rw-r--r-- | src/vte.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -309,7 +309,7 @@ _vte_terminal_ring_append (VteTerminal *terminal, gboolean fill) void _vte_terminal_ring_remove (VteTerminal *terminal, guint position) { - return _vte_ring_remove (terminal->pvt->screen->row_data, position); + _vte_ring_remove (terminal->pvt->screen->row_data, position); } /* Reset defaults for character insertion. */ |