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

Needs to be void if we're going to use it in atexit()

parent 23445d7b
No related branches found
No related tags found
No related merge requests found
...@@ -117,9 +117,8 @@ int init_crypt(void) ...@@ -117,9 +117,8 @@ int init_crypt(void)
return(-1); return(-1);
} }
int exit_crypt(void) void exit_crypt(void)
{ {
if(crypt_loaded) if(crypt_loaded)
cl.End(); cl.End();
return(0);
} }
...@@ -29,6 +29,6 @@ extern struct crypt_funcs cl; ...@@ -29,6 +29,6 @@ extern struct crypt_funcs cl;
extern int crypt_loaded; extern int crypt_loaded;
int init_crypt(void); int init_crypt(void);
int exit_crypt(void); void exit_crypt(void);
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment