Skip to content

Commit cefdf12

Browse files
committed
ompi_msgq_dll: use a better message
The 2-line message we're emitting is: ``` Data: %d ...datatype name... ``` Change the first line to be a bit more readable: ``` Data: %d instances of MPI datatype ...datatype name... ``` Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
1 parent 5bcab7a commit cefdf12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/debuggers/ompi_msgq_dll.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
22
/*
3-
* Copyright (c) 2007-2018 Cisco Systems, Inc. All rights reserved.
3+
* Copyright (c) 2007-2022 Cisco Systems, Inc. All rights reserved
44
* Copyright (c) 2004-2010 The University of Tennessee and The University
55
* of Tennessee Research Foundation. All rights
66
* reserved.
@@ -1165,7 +1165,7 @@ static int fetch_request( mqs_process *proc, mpi_process_info *p_info,
11651165
// data_name in res->extra_text[2] (vs. extra_text[1]),
11661166
// where it is guaranteed to fit.
11671167
data_name[4] = '\0';
1168-
snprintf( (char*)res->extra_text[1], 64, "Data: %d",
1168+
snprintf( (char*)res->extra_text[1], 64, "Data: %d instances of MPI datatype",
11691169
(int)res->desired_length);
11701170
snprintf( (char*)res->extra_text[2], 64, "%s",
11711171
data_name );

0 commit comments

Comments
 (0)