Browse Source

Cleanup

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1879 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.71
sletz 17 years ago
parent
commit
733c387b2b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/JackShmMem.cpp

+ 1
- 1
common/JackShmMem.cpp View File

@@ -35,7 +35,7 @@ void* JackShmMem::operator new(size_t size)
JackShmMem* obj;
char name[64];

snprintf(name, sizeof(name), "/jack_shared%ld", JackShmMem::fSegmentNum++);
snprintf(name, sizeof(name), "/jack_shared%d", JackShmMem::fSegmentNum++);

if (jack_shmalloc(name, size, &info)) {
jack_error("cannot create shared memory segment of size = %d", size, strerror(errno));


Loading…
Cancel
Save