Fix Visual Studio warnings.

This commit is contained in:
XMRig 2017-08-14 09:30:41 +03:00
parent 9975b4e4cd
commit a07b0e5953
21 changed files with 43 additions and 39 deletions

View file

@ -56,7 +56,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#pragma warning(disable:4996);
#pragma warning(disable:4996)
#define __GETOPT_H__

View file

@ -5,6 +5,8 @@
* it under the terms of the MIT license. See LICENSE for details.
*/
#pragma warning(disable:4090)
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif

View file

@ -5,6 +5,8 @@
* it under the terms of the MIT license. See LICENSE for details.
*/
#pragma warning(disable:4334)
#if HAVE_CONFIG_H
#include <jansson_private_config.h>
#endif

View file

@ -1034,8 +1034,8 @@ json_t *json_loadf(FILE *input, size_t flags, json_error_t *error)
static int fd_get_func(int *fd)
{
uint8_t c;
#ifdef HAVE_UNISTD_H
uint8_t c;
if (read(*fd, &c, 1) == 1)
return c;
#endif