~ubuntu-branches/ubuntu/trusty/srm-ifce/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gfal_srm_ifce_version.c

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2013-05-03 14:54:55 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130503145455-0orag222h2tykrj0
Tags: 1.15.2-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
/* the version should be set by a "define" at the makefile level */
25
25
static const char version[] = VERSION;
26
26
 
27
 
main(int argc, char **argv)
 
27
int main(int argc, char **argv)
28
28
{
29
 
        printf ("gfal-srm-ifce--%s\n", version);
 
29
    printf ("gfal-srm-ifce--%s\n", version);
30
30
        exit (0);
31
31
}
32
32