diff options
author | Thomas White <taw@physics.org> | 2013-03-01 14:50:52 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-03-01 14:50:52 +0100 |
commit | a2a5780aaef37122c9c9b6dfc14b218d0df61185 (patch) | |
tree | a499ab5017f0e2048b171f04faf3fa602581029a /libcrystfel/src/cell-utils.c | |
parent | 5fa1c22d6bbeff12c2509e1222090a43a994f7a9 (diff) |
Capitalise all warnings
Diffstat (limited to 'libcrystfel/src/cell-utils.c')
-rw-r--r-- | libcrystfel/src/cell-utils.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libcrystfel/src/cell-utils.c b/libcrystfel/src/cell-utils.c index ee51622b..9c580ee3 100644 --- a/libcrystfel/src/cell-utils.c +++ b/libcrystfel/src/cell-utils.c @@ -1158,33 +1158,33 @@ int validate_cell(UnitCell *cell) char cen, ua; if ( !cell_is_sensible(cell) ) { - ERROR("Warning: Unit cell parameters are not sensible.\n"); + ERROR("WARNING: Unit cell parameters are not sensible.\n"); err = 1; } if ( !bravais_lattice(cell) ) { - ERROR("Warning: Unit cell is not a conventional Bravais" + ERROR("WARNING: Unit cell is not a conventional Bravais" " lattice.\n"); err = 1; } if ( !right_handed(cell) ) { - ERROR("Warning: Unit cell is not right handed.\n"); + ERROR("WARNING: Unit cell is not right handed.\n"); err = 1; } cen = cell_get_centering(cell); ua = cell_get_unique_axis(cell); if ( (cen == 'A') && (ua != 'a') ) { - ERROR("Warning: centering doesn't match unique axis.\n"); + ERROR("WARNING: centering doesn't match unique axis.\n"); err = 1; } if ( (cen == 'B') && (ua != 'b') ) { - ERROR("Warning: centering doesn't match unique axis.\n"); + ERROR("WARNING: centering doesn't match unique axis.\n"); err = 1; } if ( (cen == 'C') && (ua != 'c') ) { - ERROR("Warning: centering doesn't match unique axis.\n"); + ERROR("WARNING: centering doesn't match unique axis.\n"); err = 1; } |