Module: wine Branch: master Commit: 5da8ad93a03ca70d18015f389921699443d56285 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5da8ad93a03ca70d18015f3899... Author: Francois Gouget <fgouget(a)free.fr> Date: Sat Jul 2 11:59:09 2016 +0200 regedit: Make get_token() static. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Hugh McMaster <hugh.mcmaster(a)outlook.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- programs/regedit/regedit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/regedit/regedit.c b/programs/regedit/regedit.c index 201eb4f..cbe3616 100644 --- a/programs/regedit/regedit.c +++ b/programs/regedit/regedit.c @@ -139,7 +139,7 @@ static BOOL PerformRegAction(REGEDIT_ACTION action, char **argv, int *i) return TRUE; } -char *get_token(char *input, char **next) +static char *get_token(char *input, char **next) { char *ch = input; char *str;