From 370ae5807a105549188c868a4ee52c6a9775dd5e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 14 Oct 2014 17:15:44 +0100 Subject: [PATCH] Spelling --- src/grib_accessor_class_data_ccsds_packing.c | 4 ++-- src/grib_accessor_class_data_png_packing.c | 4 ++-- src/grib_jasper_encoding.c | 4 ++-- src/grib_openjpeg_encoding.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index a5385d977..3615acb1d 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -538,14 +538,14 @@ cleanup: static int unpack_double(grib_accessor* a, double* val, size_t *len) { grib_context_log(a->parent->h->context, GRIB_LOG_ERROR, - "grib_accessor_data_ccsds_packing : ccsds support no enabled. Please rerun configure with --with-aec"); + "grib_accessor_data_ccsds_packing: ccsds support not enabled. Please rerun configure with --with-aec"); return GRIB_NOT_IMPLEMENTED; } static int pack_double(grib_accessor* a, const double* val, size_t *len) { grib_context_log(a->parent->h->context, GRIB_LOG_ERROR, - "grib_accessor_data_ccsds_packing : ccsds support no enabled. Please rerun configure with --with-aec"); + "grib_accessor_data_ccsds_packing: ccsds support not enabled. Please rerun configure with --with-aec"); return GRIB_NOT_IMPLEMENTED; } diff --git a/src/grib_accessor_class_data_png_packing.c b/src/grib_accessor_class_data_png_packing.c index b52e11534..79f731324 100644 --- a/src/grib_accessor_class_data_png_packing.c +++ b/src/grib_accessor_class_data_png_packing.c @@ -673,14 +673,14 @@ static int pack_double(grib_accessor* a, const double* val, size_t *len) static int unpack_double(grib_accessor* a, double* val, size_t *len) { grib_context_log(a->parent->h->context, GRIB_LOG_ERROR, - "grib_accessor_data_png_packing : png support no enabled. Please rerun configure with --with-png-support"); + "grib_accessor_data_png_packing: png support not enabled. Please rerun configure with --with-png-support"); return GRIB_NOT_IMPLEMENTED; } static int pack_double(grib_accessor* a, const double* val, size_t *len) { grib_context_log(a->parent->h->context, GRIB_LOG_ERROR, - "grib_accessor_data_png_packing : png support no enabled. Please rerun configure with --with-png-support"); + "grib_accessor_data_png_packing: png support not enabled. Please rerun configure with --with-png-support"); return GRIB_NOT_IMPLEMENTED; } diff --git a/src/grib_jasper_encoding.c b/src/grib_jasper_encoding.c index c6592d690..5857b9f6a 100644 --- a/src/grib_jasper_encoding.c +++ b/src/grib_jasper_encoding.c @@ -201,13 +201,13 @@ cleanup: int grib_jasper_decode(grib_context *c, unsigned char *buf, size_t *buflen, double *val, size_t *n_vals) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_accessor_data_jpeg2000_packing : jasper jpeg support not enabled. Please rerun configure with --with-jasper-support"); + "grib_accessor_data_jpeg2000_packing: jasper jpeg support not enabled. Please rerun configure with --with-jasper"); return GRIB_NOT_IMPLEMENTED; } int grib_jasper_encode(grib_context *c, j2k_encode_helper *helper) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_accessor_data_jpeg2000_packing : jasper jpeg support not enabled. Please rerun configure with --with-jasper-support"); + "grib_accessor_data_jpeg2000_packing: jasper jpeg support not enabled. Please rerun configure with --with-jasper"); return GRIB_NOT_IMPLEMENTED; } diff --git a/src/grib_openjpeg_encoding.c b/src/grib_openjpeg_encoding.c index 5590470fc..e46a67625 100644 --- a/src/grib_openjpeg_encoding.c +++ b/src/grib_openjpeg_encoding.c @@ -205,13 +205,13 @@ cleanup: int grib_openjpeg_decode(grib_context *c, unsigned char *buf, size_t *buflen, double *val, size_t *n_vals) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_accessor_data_jpeg2000_packing : openjpeg jpeg support not enabled. Please rerun configure with --with-openjpeg-support"); + "grib_accessor_data_jpeg2000_packing: openjpeg jpeg support not enabled. Please rerun configure with --with-openjpeg"); return GRIB_NOT_IMPLEMENTED; } int grib_openjpeg_encode(grib_context *c, j2k_encode_helper *helper) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_accessor_data_jpeg2000_packing : openjpeg jpeg support not enabled. Please rerun configure with --with-openjpeg-support"); + "grib_accessor_data_jpeg2000_packing: openjpeg jpeg support not enabled. Please rerun configure with --with-openjpeg"); return GRIB_NOT_IMPLEMENTED; }