mirror of
https://github.com/neovim/neovim.git
synced 2025-10-18 15:51:50 +00:00
refactor: replace '\0' with NUL
This commit is contained in:

committed by
Lewis Russell

parent
2f5b8a0092
commit
a18982cb83
@@ -1470,7 +1470,7 @@ start:
|
||||
*dst++ = *p++;
|
||||
}
|
||||
}
|
||||
*dst = '\0';
|
||||
*dst = NUL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1492,6 +1492,6 @@ char *backslash_halve_save(const char *p)
|
||||
*dst++ = *p++;
|
||||
}
|
||||
}
|
||||
*dst = '\0';
|
||||
*dst = NUL;
|
||||
return res;
|
||||
}
|
||||
|
Reference in New Issue
Block a user