Commit c038b6a3 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

debug.h: call_level is no longer relevant, pretty debug message format

parent bad4854f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
{ \
      if(i <= opt.debug_level) \
      { \
         printf("%s +%u %s() %s ",__FILE__,__LINE__,__FUNCTION__, stroflen(' ', call_level)); \
         printf("%-12s +%-4u %-20s : ",__FILE__,__LINE__,__FUNCTION__); \
         printf a; \
         fflush(stdout); \
      } \
@@ -53,7 +53,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
{ \
   if(i <= opt.debug_level) \
   { \
      printf("%s +%u : ",__FILE__,__LINE__); \
      printf("%-12s +%-4u : ",__FILE__,__LINE__); \
         printf a; \
   } \
      fflush(stdout); \
+0 −1
Original line number Diff line number Diff line
@@ -167,7 +167,6 @@ extern Window root;
extern XContext xid_context;
extern Screen *scr;
extern unsigned char reset_output;
extern int call_level;
extern feh_menu *menu_main;
extern feh_menu *menu_close;
extern char *mode;		/* label for the current mode */
+0 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

char **cmdargv = NULL;
int cmdargc = 0;
int call_level = 0;
char *mode = NULL;

int main(int argc, char **argv)
+1 −1
Original line number Diff line number Diff line
@@ -691,7 +691,7 @@ void feh_menu_calc_size(feh_menu * m)

void feh_menu_draw_item(feh_menu_item * i, Imlib_Image im, int ox, int oy)
{
	D(5, ("drawing item %p (text %s) on menu %p (name %s)\n", i, i->text, m, m->name));
	D(5, ("drawing item %p (text %s)\n", i, i->text));

	if (i->text) {
		D(5, ("text item\n"));