comparison src/histogram.c @ 1488:f96cc7807780

fixed a typo
author nadvornik
date Sun, 29 Mar 2009 19:57:19 +0000
parents 29aa897ea540
children 5f49f305a6b6
comparison
equal deleted inserted replaced
1487:d6061c019ceb 1488:f96cc7807780
379 return TRUE; 379 return TRUE;
380 } 380 }
381 381
382 void histogram_notify_cb(FileData *fd, NotifyType type, gpointer data) 382 void histogram_notify_cb(FileData *fd, NotifyType type, gpointer data)
383 { 383 {
384 if ((type & (NOTIFY_CHANGE || NOTIFY_REREAD)) && fd->histmap) 384 if ((type & (NOTIFY_CHANGE | NOTIFY_REREAD)) && fd->histmap)
385 { 385 {
386 histmap_free(fd->histmap); 386 histmap_free(fd->histmap);
387 fd->histmap = NULL; 387 fd->histmap = NULL;
388 } 388 }
389 } 389 }