@@ -151,49 +151,49 @@ void request_opinion(
151151 {
152152 dst += snprintf (dst , MAX_PAGE_SIZ , "%s is winning the game.\n" , is_black
153153 ? "Black" : "White" );
154- goto continue_lbl ;
154+ goto lbl_finally ;
155155 }
156156
157157 if (best_plays [0 ]-> mc_q > 0.55 )
158158 {
159159 dst += snprintf (dst , MAX_PAGE_SIZ , "%s is ahead in the game.\n" ,
160160 is_black ? "Black" : "White" );
161- goto continue_lbl ;
161+ goto lbl_finally ;
162162 }
163163
164164 if (best_plays [0 ]-> mc_q > 0.5 )
165165 {
166166 dst += snprintf (dst , MAX_PAGE_SIZ ,
167167 "The players are very close, but %s has the advantage.\n" , is_black
168168 ? "black" : "white" );
169- goto continue_lbl ;
169+ goto lbl_finally ;
170170 }
171171
172172 if (best_plays [0 ]-> mc_q > 0.45 )
173173 {
174174 dst += snprintf (dst , MAX_PAGE_SIZ , "The players are very close.\n" );
175- goto continue_lbl ;
175+ goto lbl_finally ;
176176 }
177177
178178 if (best_plays [0 ]-> mc_q > 0.4 )
179179 {
180180 dst += snprintf (dst , MAX_PAGE_SIZ , "%s is ahead in the game.\n" ,
181181 !is_black ? "Black" : "White" );
182- goto continue_lbl ;
182+ goto lbl_finally ;
183183 }
184184
185185 if (best_plays [0 ]-> mc_q > 0.3 )
186186 {
187187 dst += snprintf (dst , MAX_PAGE_SIZ , "%s is winning the game.\n" ,
188188 !is_black ? "Black" : "White" );
189- goto continue_lbl ;
189+ goto lbl_finally ;
190190 }
191191
192192 dst += snprintf (dst , MAX_PAGE_SIZ , "%s has won the game.\n" , !is_black ?
193193 "Black" : "White" );
194194 return ;
195195
196- continue_lbl : ;
196+ lbl_finally : ;
197197
198198 double q = best_plays [0 ]-> mc_q ;
199199 for (u8 i = 1 ; i < play_count ; ++ i )
0 commit comments