diff options
author | Rodeo <[email protected]> | 2015-04-05 19:33:25 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2015-04-05 19:33:25 +0000 |
commit | 52f3c7354980d3f0467c7d8db7361d6009ab7d06 (patch) | |
tree | 12aed0a6177a80aac11786f8446ac2d544eca785 | |
parent | 48ff54ecc90f6f5cce8e1ca246ba420832061b24 (diff) |
CLI: fix hb_get_cpu_count call.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7060 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c index b750f2acd..a3b18a227 100644 --- a/test/test.c +++ b/test/test.c @@ -292,7 +292,7 @@ int main( int argc, char ** argv ) /* Geeky */ fprintf( stderr, "%d CPU%s detected\n", hb_get_cpu_count(), - hb_get_cpu_count( h ) > 1 ? "s" : "" ); + hb_get_cpu_count() > 1 ? "s" : "" ); /* Exit ASAP on Ctrl-C */ signal( SIGINT, SigHandler ); |