mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.3460: some type casts are not needed
Problem: Some type casts are not needed. Solution: Remove unnecessary type casts. (closes #8934)
This commit is contained in:
committed by
Bram Moolenaar
parent
51491adfa8
commit
dfa5e464d4
@@ -440,7 +440,7 @@ dbg_check_breakpoint(exarg_T *eap)
|
||||
// replace K_SNR with "<SNR>"
|
||||
if (debug_breakpoint_name[0] == K_SPECIAL
|
||||
&& debug_breakpoint_name[1] == KS_EXTRA
|
||||
&& debug_breakpoint_name[2] == (int)KE_SNR)
|
||||
&& debug_breakpoint_name[2] == KE_SNR)
|
||||
p = (char_u *)"<SNR>";
|
||||
else
|
||||
p = (char_u *)"";
|
||||
|
Reference in New Issue
Block a user