comparison src/search.c @ 3724:ac13ea2b098d v7.3.621

updated for version 7.3.621 Problem: Compiler warnings on 64 bit windows. Solution: Add type casts. (Mike Williams)
author Bram Moolenaar <bram@vim.org>
date Thu, 02 Aug 2012 21:24:42 +0200
parents 0b1cb3f839c4
children f43ffd820a46
comparison
equal deleted inserted replaced
3723:3f17b871bfee 3724:ac13ea2b098d
4619 } 4619 }
4620 else /* try again from end of buffer */ 4620 else /* try again from end of buffer */
4621 { 4621 {
4622 /* searching backwards, so set pos to last line and col */ 4622 /* searching backwards, so set pos to last line and col */
4623 pos.lnum = curwin->w_buffer->b_ml.ml_line_count; 4623 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
4624 pos.col = STRLEN(ml_get(curwin->w_buffer->b_ml.ml_line_count)); 4624 pos.col = (colnr_T)STRLEN(
4625 ml_get(curwin->w_buffer->b_ml.ml_line_count));
4625 } 4626 }
4626 } 4627 }
4627 4628
4628 } 4629 }
4629 4630