~ubuntu-branches/ubuntu/vivid/adios/vivid-proposed

« back to all changes in this revision

Viewing changes to utils/bpsplit/bpgettime.c

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2014-06-16 23:06:38 UTC
  • mfrom: (15.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20140616230638-cxryhot6b8ge32l6
Tags: 1.7.0-1
* New upstream release.
* Add adios.pc pkgconfig file. adios_config now uses this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
    prgname = strdup(argv[0]);
96
96
 
97
97
    /* other variables */
98
 
    int c, last_c='_';
 
98
    int c;
 
99
    //int last_c='_';
99
100
    int idx = 1;
100
101
    /* Process the arguments */
101
102
    while ((c = getopt_long(argc, argv, optstring, options, NULL)) != -1) {
125
126
            exit (1);
126
127
            break;
127
128
        } /* end switch */
128
 
        last_c = c;
 
129
        //last_c = c;
129
130
        idx++;
130
131
    } /* end while */
131
132