chiark / gitweb /
*** empty log message ***
[sympathy.git] / apps / sympathy.c
index 4a9f18aa743dde3730367fec0e2a33f2116c72fb..a8dba28e16512e46bbe93e69b680bc8d95a6a852 100644 (file)
@@ -11,6 +11,9 @@ static char rcsid[] =
 
 /*
  * $Log$
+ * Revision 1.16  2008/02/27 01:31:38  james
+ * *** empty log message ***
+ *
  * Revision 1.15  2008/02/27 01:31:14  james
  * *** empty log message ***
  *
@@ -242,7 +245,7 @@ main (int argc, char *argv[])
   int c;
   extern char *optarg;
   extern int optind, opterr, optopt;
-  int width=VT102_COLS_80;
+  int width = VT102_COLS_80;
 
   int oflags[128];
   char *oargs[128];
@@ -259,7 +262,7 @@ main (int argc, char *argv[])
 
   memset (oflags, 0, sizeof (oflags));
   memset (oargs, 0, sizeof (oargs));
-    while ((c = getopt (argc, argv, "w:utscr:lKHd:pb:fL:Fk:n:")) != EOF)
+  while ((c = getopt (argc, argv, "w:utscr:lKHd:pb:fL:Fk:n:")) != EOF)
     {
       switch (c)
         {
@@ -392,7 +395,7 @@ main (int argc, char *argv[])
           oflags['f'] = 0;
           oflags['L'] = 0;
           oflags['n'] = 0;
-         oflags['w'] = 0;        
+          oflags['w'] = 0;
           if (server_socket)
             {
               socket_free_parent (server_socket);
@@ -415,11 +418,12 @@ main (int argc, char *argv[])
         oflags['p']++;
     }
 
-  if (oflags['w']) {
-       width=safe_atoi(oargs['w']);
-       if ((width>VT102_MAX_COLS) || (width<1)) 
-               fatal_moan("-w requires a width between 1 and %d\n",VT102_MAX_COLS);
-  }
+  if (oflags['w'])
+    {
+      width = safe_atoi (oargs['w']);
+      if ((width > VT102_MAX_COLS) || (width < 1))
+        fatal_moan ("-w requires a width between 1 and %d\n", VT102_MAX_COLS);
+    }
 
   if (oflags['s'] && !oflags['F'])
     {
@@ -496,7 +500,7 @@ main (int argc, char *argv[])
         }
     }
 
-  mainloop (tty, server_socket, client_socket, ansi, log, history,width);
+  mainloop (tty, server_socket, client_socket, ansi, log, history, width);
 
   if (ansi)
     {