Skip to content

Commit

Permalink
fixup: updating includes after move to common /src
Browse files Browse the repository at this point in the history
  • Loading branch information
bjosv committed Jun 20, 2024
1 parent 83dfc46 commit 5aea00c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/adlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdlib.h>
#include <valkey/alloc.h>

#include "alloc.h"
#include "adlist.h"
#include "vkutil.h"

Expand Down
2 changes: 1 addition & 1 deletion src/command.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
*/
#include <ctype.h>
#include <errno.h>
#include <valkey/alloc.h>
#ifndef _WIN32
#include <alloca.h>
#include <strings.h>
Expand All @@ -39,6 +38,7 @@
#endif
#include <string.h>

#include "alloc.h"
#include "command.h"
#include "vkarray.h"
#include "vkutil.h"
Expand Down
2 changes: 1 addition & 1 deletion src/command.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include <stdint.h>

#include "adlist.h"
#include <valkey/valkey.h>
#include "valkey.h"

typedef enum cmd_parse_result {
CMD_PARSE_OK, /* parsing ok */
Expand Down
4 changes: 2 additions & 2 deletions src/valkeycluster.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
#ifndef __HIRCLUSTER_H
#define __HIRCLUSTER_H

#include "async.h"
#include "dict.h"
#include <valkey/async.h>
#include <valkey/valkey.h>
#include "valkey.h"

#define UNUSED(x) (void)(x)

Expand Down
2 changes: 1 addition & 1 deletion src/valkeycluster_ssl.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#define __HIRCLUSTER_SSL_H

#include "valkeycluster.h"
#include <valkey/valkey_ssl.h>
#include "valkey_ssl.h"

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion src/vkarray.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdlib.h>
#include <valkey/alloc.h>

#include "alloc.h"
#include "vkarray.h"
#include "vkutil.h"

Expand Down
2 changes: 1 addition & 1 deletion src/vkutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <valkey/alloc.h>

#ifndef _WIN32
#include <netinet/in.h>
Expand All @@ -48,6 +47,7 @@
#include <execinfo.h>
#endif

#include "alloc.h"
#include "vkutil.h"
#include "win32.h"

Expand Down

0 comments on commit 5aea00c

Please sign in to comment.