From 95eec63579ae39048a7196c358197c53b3bf5f07 Mon Sep 17 00:00:00 2001 From: Cary R Date: Mon, 23 May 2011 16:18:46 -0700 Subject: [PATCH] V0.9: Fix spelling problem reported in pr3301924 --- vvp/main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vvp/main.cc b/vvp/main.cc index cec4f04b5..a1b62d14e 100644 --- a/vvp/main.cc +++ b/vvp/main.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001-2010 Stephen Williams (steve@icarus.com) + * Copyright (c) 2001-2011 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -246,7 +246,7 @@ int main(int argc, char*argv[]) { char *s; char basepath[4096], tmp[4096]; GetModuleFileName(NULL, tmp, sizeof tmp); - /* Convert to a short na,e to remove any embedded spaces. */ + /* Convert to a short name to remove any embedded spaces. */ GetShortPathName(tmp, basepath, sizeof basepath); s = strrchr(basepath, '\\'); if (s) *s = 0;