Commit ec25e0e4d2faca71b46d72b7e95b8cbd0556f95a
1 parent
14e8bdb3
Exists in
master
and in
2 other branches
Fixing LGTM warnings.
Showing
2 changed files
with
8 additions
and
9 deletions
Show diff stats
src/include/lib3270/filetransfer.h
| ... | ... | @@ -106,14 +106,14 @@ |
| 106 | 106 | { |
| 107 | 107 | struct lib3270_ft_callbacks cbk; ///< @brief Callback table - Always the first one. |
| 108 | 108 | |
| 109 | - int ft_last_cr : 1; ///< @brief CR was last char in local file | |
| 110 | - int remap_flag : 1; ///< @brief Remap ASCII<->EBCDIC | |
| 111 | - int cr_flag : 1; ///< @brief Add crlf to each line | |
| 112 | - int unix_text : 1; ///< @brief Following the convention for UNIX text files. | |
| 113 | - int message_flag : 1; ///< @brief Open Request for msg received | |
| 114 | - int ascii_flag : 1; ///< @brief Convert to ascii | |
| 115 | - int ft_is_cut : 1; ///< @brief File transfer is CUT-style | |
| 116 | - int dft_eof : 1; | |
| 109 | + unsigned int ft_last_cr : 1; ///< @brief CR was last char in local file | |
| 110 | + unsigned int remap_flag : 1; ///< @brief Remap ASCII<->EBCDIC | |
| 111 | + unsigned int cr_flag : 1; ///< @brief Add crlf to each line | |
| 112 | + unsigned int unix_text : 1; ///< @brief Following the convention for UNIX text files. | |
| 113 | + unsigned int message_flag : 1; ///< @brief Open Request for msg received | |
| 114 | + unsigned int ascii_flag : 1; ///< @brief Convert to ascii | |
| 115 | + unsigned int ft_is_cut : 1; ///< @brief File transfer is CUT-style | |
| 116 | + unsigned int dft_eof : 1; | |
| 117 | 117 | |
| 118 | 118 | |
| 119 | 119 | H3270 * host; | ... | ... |