diff options
author | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 19:00:48 -0500 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 19:00:48 -0500 |
commit | 0cac03ed262c9c9f42b73e46ad55732ed342db3b (patch) | |
tree | cb3eed63099220372befffb3bddc5bd09c222314 | |
parent | 0efc9bf4fc326599858ec7630a6f9aeaece5db23 (diff) |
put welcome greeting all on one line
-rw-r--r-- | instr-client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/instr-client.c b/instr-client.c index 4855abc..6685176 100644 --- a/instr-client.c +++ b/instr-client.c @@ -8,7 +8,6 @@ #include <glib/gprintf.h> #include "response.h" -#include "version.h" static int port = 3333; #define BUFSIZE 1024 @@ -179,7 +178,7 @@ int main(int argc, char** argv) out = g_io_stream_get_output_stream (G_IO_STREAM (connection)); in = g_io_stream_get_input_stream (G_IO_STREAM (connection)); - g_printf("\r\nWelcome! Avtech Electrosystems Ltd. - Firmware v%s\r\n",FW_VERSION); + g_print("\r\nWelcome! - "); // send an idn command const gchar idncmd[] = "*idn?\n"; |