Skip to content
Snippets Groups Projects
Commit 04d5ac14 authored by deuce's avatar deuce
Browse files

Them longs were signed. Fix 64-bit updated.

parent aafbbbc7
Branches
Tags
No related merge requests found
...@@ -437,7 +437,7 @@ BOOL DLLCALL write_msgs_cfg(scfg_t* cfg, int backup_level) ...@@ -437,7 +437,7 @@ BOOL DLLCALL write_msgs_cfg(scfg_t* cfg, int backup_level)
char dir[LEN_DIR+1]=""; char dir[LEN_DIR+1]="";
int i,j,k,file; int i,j,k,file;
uint16_t n; uint16_t n;
uint32_t l; int32_t l;
FILE *stream; FILE *stream;
smb_t smb; smb_t smb;
...@@ -721,7 +721,7 @@ BOOL DLLCALL write_file_cfg(scfg_t* cfg, int backup_level) ...@@ -721,7 +721,7 @@ BOOL DLLCALL write_file_cfg(scfg_t* cfg, int backup_level)
char path[MAX_PATH+1]; char path[MAX_PATH+1];
int i,j,k,file; int i,j,k,file;
uint16_t n; uint16_t n;
uint32_t l=0; int32_t l=0;
FILE *stream; FILE *stream;
if(cfg->prepped) if(cfg->prepped)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment