Skip to content

Commit

Permalink
generic.c: fixes two debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
vedaldi committed Aug 15, 2013
1 parent 1a759d1 commit ab95874
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vl/generic.c
Expand Up @@ -1375,7 +1375,7 @@ vl_thread_specific_state_new (void)
{
VlThreadState * self ;
#if defined(DEBUG)
printf("VLFeat thread constructor called\n") ;
printf("VLFeat DEBUG: thread constructor begins.\n") ;
#endif
self = malloc(sizeof(VlThreadState)) ;
self->lastError = 0 ;
Expand All @@ -1399,7 +1399,7 @@ static void
vl_thread_specific_state_delete (VlThreadState * self)
{
#if defined(DEBUG)
printf("VLFeat thread destructor called\n") ;
printf("VLFeat DEBUG: thread destructor begins.\n") ;
#endif
free (self) ;
}
Expand Down

0 comments on commit ab95874

Please sign in to comment.