From: Michal MalĂ˝ Date: Mon, 4 Apr 2016 13:45:22 +0000 (+0200) Subject: Remove trailing spaces X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=b2991bea81e7717c4e0ca3d56d44777531b302f5;p=libHPCS.git Remove trailing spaces --- diff --git a/libhpcs.c b/libhpcs.c index ab435b9..8856ab0 100644 --- a/libhpcs.c +++ b/libhpcs.c @@ -152,7 +152,7 @@ enum HPCS_RetCode hpcs_read_mdata(const char* filename, struct HPCS_MeasuredData ret = HPCS_E_PARSE_ERROR; goto out; } - + /* Old data formats do not containg sampling rate information, set it manually */ if (OLD_FORMAT(gentype)) { switch (mdata->file_type) { @@ -316,7 +316,7 @@ static enum HPCS_ParseCode autodetect_file_type(FILE* datafile, enum HPCS_FileTy else *file_type = HPCS_TYPE_UNKNOWN; } else - *file_type = HPCS_TYPE_UNKNOWN; + *file_type = HPCS_TYPE_UNKNOWN; out: free(type_id); @@ -1191,7 +1191,7 @@ static void remove_trailing_newline(HPCS_NChar* s) newline = StrStrW(s, CR_LF); if (newline != NULL) *newline = (WCHAR)0; -#else +#else newline = u_strrstr(s, CR_LF); if (newline != NULL) *newline = (UChar)0;