From c69f4ef7e0cfd0dc3d570c89a1384d07fe1e5d24 Mon Sep 17 00:00:00 2001 From: Cary R Date: Mon, 23 May 2011 16:15:04 -0700 Subject: [PATCH] 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 a81664e72..68e0ef42c 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 @@ -266,7 +266,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;