Commit 8420aad7 authored by Matteo Quintiliani's avatar Matteo Quintiliani
Browse files

Minor change: initialized some variable


git-svn-id: file:///home/quintiliani/svncopy/nmxptool/trunk@969 3cd66e75-5955-46cb-a940-c26e5fc5497d
parent 83237bd3
Loading
Loading
Loading
Loading
+8 −8
Original line number Original line Diff line number Diff line
@@ -7,7 +7,7 @@
 * 	Istituto Nazionale di Geofisica e Vulcanologia - Italy
 * 	Istituto Nazionale di Geofisica e Vulcanologia - Italy
 *	quintiliani@ingv.it
 *	quintiliani@ingv.it
 *
 *
 * $Id: nmxptool.c,v 1.154 2008-03-20 06:54:55 mtheo Exp $
 * $Id: nmxptool.c,v 1.155 2008-03-27 12:02:37 mtheo Exp $
 *
 *
 */
 */


@@ -118,12 +118,12 @@ int main (int argc, char **argv) {
    int span_interval = 10;
    int span_interval = 10;
    int time_to_sleep = 0;
    int time_to_sleep = 0;


    char str_start_time[200];
    char str_start_time[200] = "";
    char str_end_time[200];
    char str_end_time[200] = "";
    char str_pd_time[200];
    char str_pd_time[200] = "";


    NMXP_MSG_SERVER type;
    NMXP_MSG_SERVER type;
    void *buffer;
    void *buffer = NULL;
    int32_t length;
    int32_t length;
    int ret;
    int ret;


@@ -132,8 +132,8 @@ int main (int argc, char **argv) {


    int recv_errno = 0;
    int recv_errno = 0;


    char filename[500];
    char filename[500] = "";
    char station_code[20], channel_code[20], network_code[20];
    char station_code[20] = "", channel_code[20] = "", network_code[20] = "";


    char cur_after_start_time_str[1024];
    char cur_after_start_time_str[1024];
    double cur_after_start_time = DEFAULT_BUFFERED_TIME;
    double cur_after_start_time = DEFAULT_BUFFERED_TIME;
@@ -143,7 +143,7 @@ int main (int argc, char **argv) {
    double default_start_time = 0.0;
    double default_start_time = 0.0;
    char start_time_str[30], end_time_str[30], default_start_time_str[30];
    char start_time_str[30], end_time_str[30], default_start_time_str[30];


    NMXP_DATA_PROCESS *pd;
    NMXP_DATA_PROCESS *pd = NULL;


#ifndef HAVE_WINDOWS_H
#ifndef HAVE_WINDOWS_H
    /* Signal handling, use POSIX calls with standardized semantics */
    /* Signal handling, use POSIX calls with standardized semantics */