diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-09-24 14:25:47 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-09-24 14:25:47 -0400 |
commit | 8ad12cd15ad4dc5e7eb40398e4b835af31f34c0f (patch) | |
tree | 202f750d0513b819dd75407c96557f53d1de2adc /src | |
parent | ebd4dac2028edd77b38edfd5595dae01c529670d (diff) |
Bug 596011 - Problem compiling vte 0.22.0 on Solaris
Diffstat (limited to 'src')
-rw-r--r-- | src/vterowdata.c | 2 | ||||
-rw-r--r-- | src/vterowdata.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/vterowdata.c b/src/vterowdata.c index 5736a79..fadd434 100644 --- a/src/vterowdata.c +++ b/src/vterowdata.c @@ -91,7 +91,7 @@ _vte_row_data_fini (VteRowData *row) row->cells = NULL; } -inline gboolean +static inline gboolean _vte_row_data_ensure (VteRowData *row, guint len) { VteCells *cells = _vte_cells_for_cell_array (row->cells); diff --git a/src/vterowdata.h b/src/vterowdata.h index 32bef72..1ad4c70 100644 --- a/src/vterowdata.h +++ b/src/vterowdata.h @@ -162,7 +162,6 @@ _vte_row_data_get_writable (VteRowData *row, guint col) void _vte_row_data_init (VteRowData *row); void _vte_row_data_clear (VteRowData *row); void _vte_row_data_fini (VteRowData *row); -gboolean _vte_row_data_ensure (VteRowData *row, guint len); void _vte_row_data_insert (VteRowData *row, guint col, const VteCell *cell); void _vte_row_data_append (VteRowData *row, const VteCell *cell); void _vte_row_data_remove (VteRowData *row, guint col); |