Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita30bc7c

Browse files
committed
Remove dangling else warning (Cyrillic recode stuff)
1 parent9533de7 commita30bc7c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

‎src/backend/utils/init/miscinit.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.51 2000/07/02 15:20:56 petere Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.52 2000/07/14 16:41:44 petere Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -260,10 +260,12 @@ convertstr(unsigned char *buff, int len, int dest)
260260
for (i=0;i<len;i++,buff++)
261261
{
262262
if (*buff>127)
263+
{
263264
if (dest)
264265
*buff=RecodeForwTable[*buff-128];
265266
else
266267
*buff=RecodeBackTable[*buff-128];
268+
}
267269
}
268270
returnch;
269271
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp