aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/debugger.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-11-28 18:11:41 +0100
committerGitHub <noreply@github.com>2022-11-28 18:11:41 +0100
commitccd17543f32a892814c3d32eb5e979722b843da9 (patch)
treef4768eb7d7be52402ccd55e3e4e04aecceab3e42 /src/nvim/debugger.c
parentb2bb3973d9c7f25acfead2718d74fcf5b1e4551e (diff)
parent3b96ccf7d35be90e49029dec76344d3d92ad91dc (diff)
downloadrneovim-ccd17543f32a892814c3d32eb5e979722b843da9.tar.gz
rneovim-ccd17543f32a892814c3d32eb5e979722b843da9.tar.bz2
rneovim-ccd17543f32a892814c3d32eb5e979722b843da9.zip
Merge pull request #21200 from dundargoc/refactor/char_u/15
refactor: replace char_u with char 15 - remove STRNLEN and STRNCPY
Diffstat (limited to 'src/nvim/debugger.c')
-rw-r--r--src/nvim/debugger.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/debugger.c b/src/nvim/debugger.c
index aa9e2a9a82..fadb014604 100644
--- a/src/nvim/debugger.c
+++ b/src/nvim/debugger.c
@@ -515,18 +515,18 @@ static int dbg_parsearg(char *arg, garray_T *gap)
struct debuggy *bp = &DEBUGGY(gap, gap->ga_len);
// Find "func" or "file".
- if (STRNCMP(p, "func", 4) == 0) {
+ if (strncmp(p, "func", 4) == 0) {
bp->dbg_type = DBG_FUNC;
- } else if (STRNCMP(p, "file", 4) == 0) {
+ } else if (strncmp(p, "file", 4) == 0) {
bp->dbg_type = DBG_FILE;
- } else if (gap != &prof_ga && STRNCMP(p, "here", 4) == 0) {
+ } else if (gap != &prof_ga && strncmp(p, "here", 4) == 0) {
if (curbuf->b_ffname == NULL) {
emsg(_(e_noname));
return FAIL;
}
bp->dbg_type = DBG_FILE;
here = true;
- } else if (gap != &prof_ga && STRNCMP(p, "expr", 4) == 0) {
+ } else if (gap != &prof_ga && strncmp(p, "expr", 4) == 0) {
bp->dbg_type = DBG_EXPR;
} else {
semsg(_(e_invarg2), p);