[libbluray-devel] Fix log strings
hpi1
git at videolan.org
Thu May 7 11:50:37 CEST 2015
libbluray | branch: master | hpi1 <hpi1 at anonymous.org> | Thu Apr 30 16:17:22 2015 +0300| [29dda7b1bdf4ce9ccb4ca4eb3a0efef37760ce29] | committer: hpi1
Fix log strings
> http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=29dda7b1bdf4ce9ccb4ca4eb3a0efef37760ce29
---
src/file/file_posix.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/file/file_posix.c b/src/file/file_posix.c
index 2103216..753a8ce 100644
--- a/src/file/file_posix.c
+++ b/src/file/file_posix.c
@@ -2,6 +2,7 @@
* This file is part of libbluray
* Copyright (C) 2009-2010 Obliter0n
* Copyright (C) 2009-2010 John Stebbins
+ * Copyright (C) 2010-2015 Petri Hintukainen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -42,7 +43,7 @@ static void _file_close(BD_FILE_H *file)
if (file) {
close((int)(intptr_t)file->internal);
- BD_DEBUG(DBG_FILE, "Closed LINUX file (%p)\n", (void*)file);
+ BD_DEBUG(DBG_FILE, "Closed POSIX file (%p)\n", (void*)file);
X_FREE(file);
}
@@ -159,7 +160,7 @@ static BD_FILE_H *_file_open(const char* filename, const char *cmode)
file->internal = (void*)(intptr_t)fd;
- BD_DEBUG(DBG_FILE, "Opened LINUX file %s (%p)\n", filename, (void*)file);
+ BD_DEBUG(DBG_FILE, "Opened POSIX file %s (%p)\n", filename, (void*)file);
return file;
}
More information about the libbluray-devel
mailing list