Skip to content

Commit

Permalink
Modified the comments for the percentage free and absolute free space
Browse files Browse the repository at this point in the history
schedulers to differentiate them.



git-svn-id: http://svn.mythtv.org/svn/trunk@27199 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
Beirdo committed Nov 12, 2010
1 parent f07c304 commit 49f258f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythbackend/scheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3860,7 +3860,7 @@ static bool comp_storage_combination(FileSystemInfo *a, FileSystemInfo *b)
return false;
}

// prefer dirs with more free space over dirs with less
// prefer dirs with more percentage free space over dirs with less
static bool comp_storage_perc_free_space(FileSystemInfo *a, FileSystemInfo *b)
{
if (a->totalSpaceKB == 0)
Expand All @@ -3876,7 +3876,7 @@ static bool comp_storage_perc_free_space(FileSystemInfo *a, FileSystemInfo *b)
return false;
}

// prefer dirs with more free space over dirs with less
// prefer dirs with more absolute free space over dirs with less
static bool comp_storage_free_space(FileSystemInfo *a, FileSystemInfo *b)
{
if (a->freeSpaceKB > b->freeSpaceKB)
Expand Down

0 comments on commit 49f258f

Please sign in to comment.