Skip to content

Commit

Permalink
- small cosmetic change
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@2979 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Dec 7, 2007
1 parent 53b01e2 commit 4d3ac8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/absyn_builder/yacclib.c
@@ -1,7 +1,7 @@
/*
This file is part of OpenModelica.
Copyright (c) 1998-2006, Linköpings universitet, Department of
Copyright (c) 1998-2007, Linköpings universitet, Department of
Computer and Information Science, PELAB
All rights reserved.
Expand Down Expand Up @@ -52,8 +52,8 @@ void *alloc_bytes(unsigned nbytes)
{
void *p;
if( (p = malloc(nbytes)) == 0 ) {
fprintf(stderr, "malloc(%u) failed: %s\n", nbytes, strerror(errno));
exit(1);
fprintf(stderr, "yacclib.c: malloc(%u) failed: %s\n", nbytes, strerror(errno));
exit(1);
}
return p;
}
Expand Down

0 comments on commit 4d3ac8d

Please sign in to comment.