Removed stray semicolon.

This commit is contained in:
Werner Koch 2004-08-16 08:19:42 +00:00
parent da3453a844
commit 3cecfe2496
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-08-16 Werner Koch <wk@g10code.de>
* gpgv.c: Removed stray semicolon.
2004-08-11 Werner Koch <wk@g10code.de>
* gpgv.c (destroy_dotlock): New stub.

View File

@ -390,7 +390,7 @@ int tty_no_terminal(int onoff) {return 0;}
/* We do not do any locking, so use these stubs here */
void disable_dotlock(void) {}
DOTLOCK create_dotlock( const char *file_to_lock ) { return NULL; }
void destroy_dotlock (DOTLOCK h) { };
void destroy_dotlock (DOTLOCK h) {}
int make_dotlock( DOTLOCK h, long timeout ) { return 0;}
int release_dotlock( DOTLOCK h ) {return 0;}
void remove_lockfiles(void) {}