am 4410eb70: am 2a1067d1: am 753b96cf: am dd56039c: Merge "Fixed an unused param warning in logcat"

* commit '4410eb7072b74434576f633f5d128b3705e6b4eb':
  Fixed an unused param warning in logcat
This commit is contained in:
Stephen Hines 2012-08-13 16:08:19 -07:00 committed by Android Git Automerger
commit 539b1f5e2f
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ static EventTagMap* g_eventTagMap = NULL;
static int openLogFile (const char *pathname)
{
return open(g_outputFileName, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
return open(pathname, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
}
static void rotateLogs()