Skip to content

Commit 4cbc366

Browse files
Merge pull request #1421 from lukaszstolarczuk/wording
[Example] Fix error msg in IPC example
2 parents d7eb27e + ba89561 commit 4cbc366

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/ipc_ipcapi/ipc_ipcapi_consumer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2024 Intel Corporation
2+
* Copyright (C) 2024-2025 Intel Corporation
33
*
44
* Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
55
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
@@ -138,7 +138,7 @@ int main(int argc, char *argv[]) {
138138
0, &scalable_pool);
139139
if (umf_result != UMF_RESULT_SUCCESS) {
140140
fprintf(stderr,
141-
"[producer] ERROR: creating jemalloc UMF pool failed\n");
141+
"[producer] ERROR: creating UMF scalable pool failed\n");
142142
goto err_destroy_OS_memory_provider;
143143
}
144144

examples/ipc_ipcapi/ipc_ipcapi_producer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ int main(int argc, char *argv[]) {
125125
0, &scalable_pool);
126126
if (umf_result != UMF_RESULT_SUCCESS) {
127127
fprintf(stderr,
128-
"[producer] ERROR: creating the UMF jemalloc pool failed\n");
128+
"[producer] ERROR: creating UMF scalable pool failed\n");
129129
goto err_destroy_OS_memory_provider;
130130
}
131131

0 commit comments

Comments
 (0)