Commit 33a277e9 33a277e9f8e8541fee73f902413afb100e48b95c by Sergey Poznyakoff

mh: Minor fixes.

1 parent 1a8279af
...@@ -263,7 +263,7 @@ main (int argc, char **argv) ...@@ -263,7 +263,7 @@ main (int argc, char **argv)
263 if (prepend_option) 263 if (prepend_option)
264 { 264 {
265 mu_stream_printf (strout, "\n--------%s\n\n", _("Enter initial text")); 265 mu_stream_printf (strout, "\n--------%s\n\n", _("Enter initial text"));
266 while (newval = prompter_get_line ()) 266 while ((newval = prompter_get_line ()))
267 { 267 {
268 mu_stream_write (tmp, newval, strlen (newval), NULL); 268 mu_stream_write (tmp, newval, strlen (newval), NULL);
269 free (newval); 269 free (newval);
...@@ -286,7 +286,7 @@ main (int argc, char **argv) ...@@ -286,7 +286,7 @@ main (int argc, char **argv)
286 if (!prepend_option && !rapid_option) 286 if (!prepend_option && !rapid_option)
287 { 287 {
288 printf ("\n--------%s\n\n", _("Enter additional text")); 288 printf ("\n--------%s\n\n", _("Enter additional text"));
289 while (newval = prompter_get_line ()) 289 while ((newval = prompter_get_line ()))
290 { 290 {
291 mu_stream_write (tmp, newval, strlen (newval), NULL); 291 mu_stream_write (tmp, newval, strlen (newval), NULL);
292 free (newval); 292 free (newval);
......
...@@ -78,7 +78,7 @@ AM_CPPFLAGS = \ ...@@ -78,7 +78,7 @@ AM_CPPFLAGS = \
78 -DPYTHON_LIBS="\"$(PYTHON_LIBS)\"" \ 78 -DPYTHON_LIBS="\"$(PYTHON_LIBS)\"" \
79 -DI18NLIBS="\"$(LIBINTL)\"" 79 -DI18NLIBS="\"$(LIBINTL)\""
80 80
81 BUILD_SOURCES=mu-setup.c mu-setup.h 81 BUILT_SOURCES=mu-setup.c mu-setup.h
82 EXTRA_DIST=mu-setup.c mu-setup.h 82 EXTRA_DIST=mu-setup.c mu-setup.h
83 83
84 mu-setup.h: Makefile.am $(MODULES) $(IDLE_MODULES) 84 mu-setup.h: Makefile.am $(MODULES) $(IDLE_MODULES)
......