mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 09:18:19 +00:00
refactor: remove redundant const char * casts
This commit is contained in:
@@ -1125,7 +1125,7 @@ void ex_endwhile(exarg_T *eap)
|
||||
/// Handle ":throw expr"
|
||||
void ex_throw(exarg_T *eap)
|
||||
{
|
||||
const char *arg = (const char *)eap->arg;
|
||||
const char *arg = eap->arg;
|
||||
char *value;
|
||||
|
||||
if (*arg != NUL && *arg != '|' && *arg != '\n') {
|
||||
|
Reference in New Issue
Block a user