diff options
author | Thomas White <taw@physics.org> | 2014-05-16 10:52:32 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-05-16 10:52:32 +0200 |
commit | 94357998fb79ba621b24a1dd93cfe3360dea345a (patch) | |
tree | bdc1b99dc565cc49eb70554fb54164934939dd4f /scripts/gen-sfs | |
parent | 1bc44dd21dc49a3920431cfee4495a28a45df622 (diff) |
Fix obvious bug in scripts/gen-sfs
Diffstat (limited to 'scripts/gen-sfs')
-rwxr-xr-x | scripts/gen-sfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen-sfs b/scripts/gen-sfs index 99216cf6..6a53f64e 100755 --- a/scripts/gen-sfs +++ b/scripts/gen-sfs @@ -74,7 +74,7 @@ while ( \$line = <FILE> ) { my \$phase = \$5; printf("%4i %4i %4i %10.2f %s %10.2f %7i\n", - \$h, \$k, \$l, \$intensity, " -", \$sigi, 1); + \$h, \$k, \$l, \$intensity, " -", 0.0, 1); } else { printf(STDERR "Couldn't understand line '%s'\n", \$line); |