Commit 9e6a9f30 authored by antirez's avatar antirez
Browse files

A past commit removed the inclusion of redis.h from rdb.c, completely breaking...

A past commit removed the inclusion of redis.h from rdb.c, completely breaking 32 bit builds under Linux.
parent 9ed32ba0
#include "redis.h"
#include "lzf.h" /* LZF compression library */
#include <math.h> #include <math.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/time.h> #include <sys/time.h>
...@@ -5,8 +8,6 @@ ...@@ -5,8 +8,6 @@
#include <sys/wait.h> #include <sys/wait.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <sys/stat.h> #include <sys/stat.h>
#include "rdb.h"
#include "lzf.h" /* LZF compression library */
static int rdbWriteRaw(rio *rdb, void *p, size_t len) { static int rdbWriteRaw(rio *rdb, void *p, size_t len) {
if (rdb && rioWrite(rdb,p,len) == 0) if (rdb && rioWrite(rdb,p,len) == 0)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment