Commit 360093a6 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

add a few missing placewewant size_t conversions

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1871 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 2 deletions
+3 -2
......@@ -1729,7 +1729,8 @@ const char *do_int_speller(char *tempfile_name)
const char *do_alt_speller(char *tempfile_name)
{
int alt_spell_status, lineno_cur = current->lineno;
int x_cur = current_x, y_cur = current_y, pww_cur = placewewant;
int x_cur = current_x, y_cur = current_y;
size_t pww_cur = placewewant;
pid_t pid_spell;
char *ptr;
static int arglen = 3;
......@@ -2151,7 +2152,7 @@ int break_line(const char *line, int goal, int force)
int do_para_search(justbegend search_type, size_t *quote, size_t *par,
size_t *indent, int do_refresh)
{
int old_pww = placewewant;
size_t old_pww = placewewant;
const filestruct *current_save = current;
size_t quote_len;
/* Length of the initial quotation of the paragraph we
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment