comparison Wnn/jutil/wdreg.c @ 28:a7ccf412ba02

more warning suppression
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sat, 06 Mar 2010 23:24:53 +0900
parents c966456648ad
children
comparison
equal deleted inserted replaced
27:6bfa7ea3b75b 28:a7ccf412ba02
30 */ 30 */
31 31
32 /* 32 /*
33 * UJIS ファイルを読みとって、単語登録を行なう。 33 * UJIS ファイルを読みとって、単語登録を行なう。
34 */ 34 */
35
36 #ifndef lint
37 static char *rcs_id = "$Id: wdreg.c,v 1.8 2002/05/12 22:51:17 hiroo Exp $";
38 #endif /* lint */
39 35
40 #ifdef HAVE_CONFIG_H 36 #ifdef HAVE_CONFIG_H
41 # include <config.h> 37 # include <config.h>
42 #endif 38 #endif
43 39
124 { 120 {
125 def_server = ""; 121 def_server = "";
126 } 122 }
127 server_n = def_server; 123 server_n = def_server;
128 124
129 if (cswidth_name = get_cswidth_name (WNN_DEFAULT_LANG)) 125 if ((cswidth_name = get_cswidth_name (WNN_DEFAULT_LANG)))
130 set_cswidth (create_cswidth (cswidth_name)); 126 set_cswidth (create_cswidth (cswidth_name));
131 while ((c = getopt (argc, argv, "D:n:d:L")) != EOF) 127 while ((c = getopt (argc, argv, "D:n:d:L")) != EOF)
132 { 128 {
133 switch (c) 129 switch (c)
134 { 130 {