Yasuhiro Matsumoto wrote:
> This is warning to notice overflow between lhs/rhs. But we don't need
> to care about overflow because it doesn't take huge value. So below is
> one of fixes.
>
> diff --git a/src/undo.c b/src/undo.c
> index 2bf815b..5f33b55 100644
> --- a/src/undo.c
> +++ b/src/undo.c
> @@ -267,7 +267,7 @@ u_save(linenr_T top, linenr_T bot)
> return OK;
>
> if (top > curbuf->b_ml.ml_line_count
> - || top >= bot
> + || (unsigned long)top >= (unsigned long)bot
> || bot > curbuf->b_ml.ml_line_count + 1)
> return FALSE; /* rely on caller to do error messages */
I do like to get rid of all warnings. But I think this one should be
fixed in the compiler. Someone mentioned a compiler update did get rid
of some of these kind of warnings, so there is hope.
--
BEDEVERE: Oooooh!
LAUNCELOT: No "Aaaaarrrrrrggghhh ... " at the back of the throat.
BEDEVERE: No! "Oooooh!" in surprise and alarm!
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.