diff options
author | Thomas White <taw@physics.org> | 2009-11-19 14:44:21 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2009-11-19 14:44:21 +0100 |
commit | 145eb787b1a59baaa8cc3f96bb28742786e68f49 (patch) | |
tree | 161e17c377774142279316440e54644135ac3a5f | |
parent | 2f01e52d0248f769b88aee6067ab2f0ab094f115 (diff) |
Nicer species table layout
-rw-r--r-- | src/sfac.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -303,7 +303,7 @@ struct molecule *load_molecule() printf("There are %i species\n", mol->n_species); for ( i=0; i<mol->n_species; i++ ) { - printf("'%s': %i\n", mol->species[i]->species, + printf("%3s : %6i\n", mol->species[i]->species, mol->species[i]->n_atoms); } |