From: Joona Kiiski Date: Wed, 5 Jan 2011 22:34:51 +0000 (+0200) Subject: Fix variable naming in prototypes at uci.cpp X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=d4ded09e17c607c6f814e398aea9ea559c35f8ee Fix variable naming in prototypes at uci.cpp Signed-off-by: Marco Costalba --- diff --git a/src/uci.cpp b/src/uci.cpp index 28cbacb3..a7a61cec 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -49,10 +49,10 @@ namespace { typedef istringstream UCIParser; // Local functions - void set_option(UCIParser& uip); - void set_position(Position& pos, UCIParser& uip); - bool go(Position& pos, UCIParser& uip); - void perft(Position& pos, UCIParser& uip); + void set_option(UCIParser& up); + void set_position(Position& pos, UCIParser& up); + bool go(Position& pos, UCIParser& up); + void perft(Position& pos, UCIParser& up); }