/* if no -Txxx, then set default format */
if (!gvc->jobs || !gvc->jobs->output_langname) {
v = gvjobs_output_langname(gvc, "dot");
- assert(v); /* "dot" should always be available as an output format */
+ if (!v) {
+// assert(v); /* "dot" should always be available as an output format */
+ fprintf(stderr,
+ "Unable to find even the default \"-Tdot\" renderer. Has the config\nfile been generated by running \"dot -c\" with installer's priviledges?\n");
+ exit(1);
+ }
}
/* set persistent attributes here (if not already set from command line options) */