am dd56039c: Merge "Fixed an unused param warning in logcat"

* commit 'dd56039c881db2efebfa7df6491579e3ae01748f':
  Fixed an unused param warning in logcat
This commit is contained in:
Stephen Hines 2012-08-13 13:06:29 -07:00 committed by Android Git Automerger
commit 753b96cf67

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()