Skip to content

Commit

Permalink
vl/generic.c: fixes debugging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
vedaldi committed Jun 19, 2011
1 parent e0700ea commit a3fe91f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vl/generic.c
Expand Up @@ -723,7 +723,7 @@ VL_EXPORT VlThreadSpecificState *
vl_thread_specific_state_new () vl_thread_specific_state_new ()
{ {
VlThreadSpecificState * self ; VlThreadSpecificState * self ;
#ifdef DEBUG #if defined(DEBUG)
printf("VLFeat thread constructor called\n") ; printf("VLFeat thread constructor called\n") ;
#endif #endif
self = malloc(sizeof(VlThreadSpecificState)) ; self = malloc(sizeof(VlThreadSpecificState)) ;
Expand All @@ -743,7 +743,7 @@ vl_thread_specific_state_new ()
VL_EXPORT void VL_EXPORT void
vl_thread_specific_state_delete (VlThreadSpecificState * self) vl_thread_specific_state_delete (VlThreadSpecificState * self)
{ {
#ifdef DEBUG #if defined(DEBUG)
printf("VLFeat thread destructor called\n") ; printf("VLFeat thread destructor called\n") ;
#endif #endif
free (self) ; free (self) ;
Expand Down Expand Up @@ -802,7 +802,7 @@ static void
vl_constructor () vl_constructor ()
{ {
VlState * state ; VlState * state ;
#ifndef DEBUG #if defined(DEBUG)
printf("VLFeat constructor called\n") ; printf("VLFeat constructor called\n") ;
#endif #endif


Expand Down Expand Up @@ -856,7 +856,7 @@ static void
vl_destructor () vl_destructor ()
{ {
VlState * state ; VlState * state ;
#ifndef DEBUG #if defined(DEBUG)
printf("VLFeat destructor called\n") ; printf("VLFeat destructor called\n") ;
#endif #endif


Expand Down

0 comments on commit a3fe91f

Please sign in to comment.