diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-02-03 11:52:54 +0100 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-02-03 11:53:50 +0100 |
commit | dbe269df9c7d48b59c42b1a2c246d6dbc4b77dc6 (patch) | |
tree | 729c01c55d0104f963dd64953b188526cb5dc89d /sal | |
parent | a9b3215aeaa101d7fe16c14ce64ca4f5ca89b7e6 (diff) |
Fix typo
Change-Id: I4f96972255ca99debd53d4302073d1823cc27492
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/pipe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/pipe.cxx b/sal/osl/unx/pipe.cxx index f390c7cdb8fb..221638013909 100644 --- a/sal/osl/unx/pipe.cxx +++ b/sal/osl/unx/pipe.cxx @@ -370,7 +370,7 @@ void SAL_CALL osl_closePipe( oslPipe pPipe ) int fd = socket(AF_UNIX, SOCK_STREAM, 0); if ( fd < 0 ) { - SAL_WARN("osl.pipe" "socket() failed: " << strerror(errno)); + SAL_WARN("osl.pipe", "socket() failed: " << strerror(errno)); return; } memset(&addr, 0, sizeof(addr)); |