diff --git a/src/smap/configure_functions.c b/src/smap/configure_functions.c index 002221696caa0b4e451de614adb6caee363fdaf6..6e2e75133bbc9c3568010db615d1a07d095ea2a7 100644 --- a/src/smap/configure_functions.c +++ b/src/smap/configure_functions.c @@ -1,5 +1,6 @@ /*****************************************************************************\ * configure_functions.c - Functions related to configure mode of smap. + * $Id$ ***************************************************************************** * Copyright (C) 2002 The Regents of the University of California. * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). @@ -256,8 +257,9 @@ static int _resolve(char *com) if(coord) sprintf(error_string, - "%s resolves to X=%d Y=%d Z=%d\n", - com+i,coord[X],coord[Y],coord[Z]); + "%s resolves to X=%d Y=%d Z=%d or bgl%d%d%d\n", + com+i,coord[X],coord[Y],coord[Z], + coord[X],coord[Y],coord[Z]); else sprintf(error_string, "%s has no resolve.\n", com+i); diff --git a/src/smap/smap.c b/src/smap/smap.c index 51601b34c2cd7b3b96b7a345363579425cac6f68..eb0cfdf35e0bffd0b0eee937c822275f6946c93f 100644 --- a/src/smap/smap.c +++ b/src/smap/smap.c @@ -121,11 +121,10 @@ int main(int argc, char *argv[]) } else { int *coord = find_bp_loc(params.partition); if(coord) - printf("%s resolves to X=%d Y=%d Z=%d\n", + printf("%s resolves to X=%d Y=%d Z=%d or bgl%d%d%d\n", params.partition, - coord[X], - coord[Y], - coord[Z]); + coord[X], coord[Y], coord[Z], + coord[X], coord[Y], coord[Z]); else printf("%s has no resolve.\n", params.partition);