X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fmodel-checker.c;h=0e73fec651110f2330c0e807fadbc766d5825a9e;hb=refs%2Fbuilds%2F149%2Fpspp;hp=940f89aa73495cf80fc4b8e3663cdac15c87273f;hpb=173d1687aea88e0e5e1b1d8615ed68ebefb15d08;p=pspp diff --git a/src/libpspp/model-checker.c b/src/libpspp/model-checker.c index 940f89aa73..0e73fec651 100644 --- a/src/libpspp/model-checker.c +++ b/src/libpspp/model-checker.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2007, 2009 Free Software Foundation, Inc. + Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -120,7 +120,7 @@ mc_path_to_string (const struct mc_path *path, struct string *string) for (i = 0; i < mc_path_get_length (path); i++) { if (i > 0) - ds_put_char (string, ' '); + ds_put_byte (string, ' '); ds_put_format (string, "%d", mc_path_get_operation (path, i)); } }