X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fm_name.c;h=bc3a681815ac8fac9e94e8e984819ebcaae43384;hb=337338b404931f06f0db2119c9e145e8ca5a9860;hp=2c403d0cb36f1d4c014c0dac1b681a735ea695f5;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/sbr/m_name.c b/sbr/m_name.c index 2c403d0..bc3a681 100644 --- a/sbr/m_name.c +++ b/sbr/m_name.c @@ -1,9 +1,6 @@ - /* * m_name.c -- return a message number as a string * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -17,9 +14,9 @@ static char name[BUFSIZ]; char * m_name (int num) { - if (num <= 0) - return "?"; + if (num <= 0) + return "?"; - snprintf (name, sizeof(name), "%d", num); - return name; + snprintf (name, sizeof(name), "%d", num); + return name; }