Skip to content

Commit

Permalink
Merge pull request #17 from niclas/master
Browse files Browse the repository at this point in the history
Remove newline in window title (Issue #16)
  • Loading branch information
donald authored Feb 7, 2019
2 parents 28a1229 + ace9d96 commit 3af8e44
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ This release was tested against MarIuX.

## Revision History

### Version 3.0p11 - Jan 23 2019
- remove newline in window title
- Niclas Hofmann, `niclas@molgen.mpg.de`

### Version 3.0p10 - Jan 23 2019
- fix integer overflow
- Niclas Hofmann, `niclas@molgen.mpg.de`
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define XDU_VERSION "3.0p10"
#define XDU_VERSION "3.0p11"
2 changes: 1 addition & 1 deletion xdu.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ makenode(char* name, long long size)
struct node* np;

np = (struct node*)calloc(1, sizeof(struct node));
np->name = strdup(name);
np->name = name;
np->size = size;
np->num = nnodes;
nnodes++;
Expand Down
2 changes: 1 addition & 1 deletion xwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ int xsetup(int* argcp, char** argv)
* Create the top level Widget
*/
n = 0;
XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)\n");
XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)");
n++;
toplevel = XtAppInitialize(&app_con, "XDu", options, XtNumber(options), argcp,
argv, fallback_resources, args, n);
Expand Down

0 comments on commit 3af8e44

Please sign in to comment.